VBA Width Property of CheckBox ActiveX Control in Excel to sets or gets the distance between the Width of the CheckBox control and the Width of the userform or worksheet in points. In other words we use ‘Width’ property of Check Box to set the Check Box Width position.
CheckBox_Width_Property – Syntax
Please find the below syntax of CheckBox_Width_Property in Excel VBA.
CheckBoxName.Width=Width position in number format
Where CheckBoxName represents the CheckBox object. In the above syntax we are using a ‘Width’ property of CheckBox object to set the Width position.
CheckBox_Width_Property – Explanation & Example
Here is the example for CheckBox_Width_Property. It will take you through how to set Width property of Check Box using Excel VBA. Here you can find or see how we sets or gets Width property of Check Box manually or using code.
CheckBox_Width_Property: Change Manually
Please find the following details how we are changing manually ‘Width’ of CheckBox property.
-
- Go To Developer Tab and then click Visual Basic from the Code or Press Alt+F11.
- Go To Insert Menu, Click UserForm. Please find the screenshot for the same.
-
- Drag a CheckBox on the Userform from the Toolbox.
-
- Right click on the Check Box. Click on properties from the available list.
-
- Now you can find the properties window of CheckBox on the screen. Please find the screenshot for the same.
-
- On the left side find ‘Width’ property from the available Check Box properties.
- On the right side you can mention Width position in number format. Here is the screen shot.
-
- for better understand added two checkBox controls.
- For example, I have entered 150(number) for CheckBox1 and 100 for CheckBox2. You can see same in the screen shot for your understand.
CheckBox_Width_Property: Change Using Code
Please find the following details how we are changing Width of the CheckBox property with using Excel VBA code.
-
-
- Go To Developer Tab and then click Visual Basic from the Code or Press Alt+F11.
- Go To Insert Menu, Click UserForm. Please find the screenshot for the same.
-
-
-
- Drag a CheckBox on the Userform from the Toolbox. Please find the screenshot for the same.
-
-
-
- Double Click on the UserForm, and select the Userform event as shown in the below screen shot.
-
-
-
- Now can see the following code in the module.
-
Private Sub UserForm_Initialize() End Sub
-
-
- Now, add the following example code1 to the in between above event procedure.
-
Example Code1:
'Width_Property of CheckBox Control Private Sub UserForm_Initialize() With UserForm1 'Below statement represents Width_of_the CheckBox .CheckBox1.Width = 150 .CheckBox2.Width = 100 End With End Sub
-
-
- Now, Press ‘F5’ to see the following Output.
-
Output: If Width =150 and Width=100
Please find the below output when we sets Width property of Checkbox1 value is 150 and Checkbox2 value is 100. It is shown in the following Screen Shot.