Catatan
Akses ke halaman ini memerlukan otorisasi. Anda dapat mencoba masuk atau mengubah direktori.
Akses ke halaman ini memerlukan otorisasi. Anda dapat mencoba mengubah direktori.
Returns the Microsoft Excel control type. Read-only XlFormControl.
Syntax
expression.FormControlType
expression A variable that represents a Shape object.
Remarks
You cannot use this property with ActiveX controls (the Type property of the Shape object must return msoFormControl).
Example
This example clears all the Microsoft Excel check boxes on worksheet one.
For Each s In Worksheets(1).Shapes
If s.Type = msoFormControl Then
If s.FormControlType = xlCheckBox Then _
s.ControlFormat.Value = False
End If
Next
Support and feedback
Have questions or feedback about Office VBA or this documentation? Please see Office VBA support and feedback for guidance about the ways you can receive support and provide feedback.