You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -68,12 +68,12 @@ Specifies the side of the box on which the [**Caption**](#caption) text appears.
68
68
Syntax: *object*.**Alignment**[ = *value*]
69
69
70
70
*value*
71
-
: A member of [**AlignmentConstantsNoCenter**](../VBRUN/Constants/AlignmentConstantsNoCenter): **tbLeftJustify** (0, default — caption to the right of the box) or **tbRightJustify** (1 — caption to the left of the box).
71
+
: A member of [**AlignmentConstantsNoCenter**](../../VBRUN/Constants/AlignmentConstantsNoCenter): **tbLeftJustify** (0, default — caption to the right of the box) or **tbRightJustify** (1 — caption to the left of the box).
72
72
73
73
### Appearance
74
74
{: .no_toc }
75
75
76
-
Determines how the control's border is drawn by the OS. A member of [**AppearanceConstants**](../VBRUN/Constants/AppearanceConstants): **vbAppearFlat** or **vbAppear3d** (default).
76
+
Determines how the control's border is drawn by the OS. A member of [**AppearanceConstants**](../../VBRUN/Constants/AppearanceConstants): **vbAppearFlat** or **vbAppear3d** (default).
77
77
78
78
### BackColor
79
79
{: .no_toc }
@@ -95,7 +95,7 @@ Determines whether the previously focused control's [**Validate**](#validate) ev
95
95
### ControlType
96
96
{: .no_toc }
97
97
98
-
A read-only [**ControlTypeConstants**](../VBRUN/Constants/ControlTypeConstants) value identifying this control as a check box. Always **vbCheckBox**.
98
+
A read-only [**ControlTypeConstants**](../../VBRUN/Constants/ControlTypeConstants) value identifying this control as a check box. Always **vbCheckBox**.
99
99
100
100
### DataField
101
101
{: .no_toc }
@@ -125,7 +125,7 @@ A **StdPicture** used as the mouse cursor while the control is being drag-and-dr
125
125
### DragMode
126
126
{: .no_toc }
127
127
128
-
Whether the control should drag itself when the user holds the mouse over it. A member of [**DragModeConstants**](../VBRUN/Constants/DragModeConstants): **vbManual** (0, default — call [**Drag**](#drag) from code) or **vbAutomatic** (1).
128
+
Whether the control should drag itself when the user holds the mouse over it. A member of [**DragModeConstants**](../../VBRUN/Constants/DragModeConstants): **vbManual** (0, default — call [**Drag**](#drag) from code) or **vbAutomatic** (1).
129
129
130
130
### Enabled
131
131
{: .no_toc }
@@ -181,7 +181,7 @@ A **StdPicture** used as the mouse cursor when [**MousePointer**](#mousepointer)
181
181
### MousePointer
182
182
{: .no_toc }
183
183
184
-
The mouse cursor shown when the pointer is over the control. A member of [**MousePointerConstants**](../VBRUN/Constants/MousePointerConstants).
184
+
The mouse cursor shown when the pointer is over the control. A member of [**MousePointerConstants**](../../VBRUN/Constants/MousePointerConstants).
185
185
186
186
### Name
187
187
{: .no_toc }
@@ -191,7 +191,7 @@ The unique design-time name of the control on its parent form. Read-only at run
191
191
### OLEDropMode
192
192
{: .no_toc }
193
193
194
-
How the control responds to OLE drops. A restricted member of [**OLEDropConstants**](../VBRUN/Constants/OLEDropConstants): **vbOLEDropNone** or **vbOLEDropManual**. Automatic-drop mode is not supported on a CheckBox.
194
+
How the control responds to OLE drops. A restricted member of [**OLEDropConstants**](../../VBRUN/Constants/OLEDropConstants): **vbOLEDropNone** or **vbOLEDropManual**. Automatic-drop mode is not supported on a CheckBox.
195
195
196
196
### Opacity
197
197
{: .no_toc }
@@ -206,7 +206,7 @@ The number of pixels of empty space inserted between the picture and the caption
206
206
### Parent
207
207
{: .no_toc }
208
208
209
-
A reference to the [**Form**](Form) (or **UserControl**) that contains this control. Read-only.
209
+
A reference to the [**Form**](../Form) (or **UserControl**) that contains this control. Read-only.
210
210
211
211
### Picture
212
212
{: .no_toc }
@@ -216,7 +216,7 @@ A **StdPicture** drawn on the control when [**Style**](#style) is **vbButtonGrap
216
216
### PictureAlignment
217
217
{: .no_toc }
218
218
219
-
How [**Picture**](#picture) is positioned relative to the caption when [**Style**](#style) is **vbButtonGraphical**. A member of [**AlignConstants**](../VBRUN/Constants/AlignConstants): **vbAlignNone**, **vbAlignTop** (default), **vbAlignBottom**, **vbAlignLeft**, **vbAlignRight**.
219
+
How [**Picture**](#picture) is positioned relative to the caption when [**Style**](#style) is **vbButtonGraphical**. A member of [**AlignConstants**](../../VBRUN/Constants/AlignConstants): **vbAlignNone**, **vbAlignTop** (default), **vbAlignBottom**, **vbAlignLeft**, **vbAlignRight**.
220
220
221
221
### PictureDpiScaling
222
222
{: .no_toc }
@@ -232,7 +232,7 @@ When **True**, scales [**Picture**](#picture), [**DownPicture**](#downpicture),
232
232
### Style
233
233
{: .no_toc }
234
234
235
-
Selects between the standard Win32 check-box appearance and an owner-drawn graphical button. A member of [**ButtonConstants**](../VBRUN/Constants/ButtonConstants): **vbButtonStandard** (0, default) or **vbButtonGraphical** (1). Changing **Style** at run time recreates the underlying window.
235
+
Selects between the standard Win32 check-box appearance and an owner-drawn graphical button. A member of [**ButtonConstants**](../../VBRUN/Constants/ButtonConstants): **vbButtonStandard** (0, default) or **vbButtonGraphical** (1). Changing **Style** at run time recreates the underlying window.
236
236
237
237
### TabIndex
238
238
{: .no_toc }
@@ -278,7 +278,7 @@ The current state of the check box. **Default property.**
278
278
Syntax: *object*.**Value**[ = *value*]
279
279
280
280
*value*
281
-
: A member of [**CheckBoxConstants**](../VBRUN/Constants/CheckBoxConstants): **vbUnchecked** (0), **vbChecked** (1), or **vbGrayed** (2). Negative numbers raise run-time error 380.
281
+
: A member of [**CheckBoxConstants**](../../VBRUN/Constants/CheckBoxConstants): **vbUnchecked** (0), **vbChecked** (1), or **vbGrayed** (2). Negative numbers raise run-time error 380.
282
282
283
283
Assigning a value that differs from the current one raises a [**Click**](#click) event.
284
284
@@ -312,7 +312,7 @@ Begins, completes, or cancels a manual drag-and-drop operation. Typically called
312
312
Syntax: *object*.**Drag**[*Action*]
313
313
314
314
*Action*
315
-
: *optional* A member of [**DragConstants**](../VBRUN/Constants/DragConstants): **vbCancel** (0), **vbBeginDrag** (1, default), or **vbEndDrag** (2).
315
+
: *optional* A member of [**DragConstants**](../../VBRUN/Constants/DragConstants): **vbCancel** (0), **vbBeginDrag** (1, default), or **vbEndDrag** (2).
316
316
317
317
### Move
318
318
{: .no_toc }
@@ -363,7 +363,7 @@ Brings the control to the front or back of its sibling stack.
363
363
Syntax: *object*.**ZOrder**[*Position*]
364
364
365
365
*Position*
366
-
: *optional* A member of [**ZOrderConstants**](../VBRUN/Constants/ZOrderConstants): **vbBringToFront** (0, default) or **vbSendToBack** (1).
366
+
: *optional* A member of [**ZOrderConstants**](../../VBRUN/Constants/ZOrderConstants): **vbBringToFront** (0, default) or **vbSendToBack** (1).
0 commit comments