Enabled   Indicates whether the control can respond to user interaction (Boolean). When Enabled is set to False, the control appears grayed out.
Name   The name of the control to be used in the source code.
ProductName   Name of the product, specified in the AssemblyInfo.vb file of the Solution.
ProductVersion   The version of the product, usually specified by three numbers separated by dots (ReadOnly), obtained from the AssemblyInfo.vb file of the Solution. For example: "5.1.14" means Major Version 5, Minor Version 1, Build Number 14.
Visible   Indicates whether the control is visible to the user (Boolean).
Bounds   A Rectangle object that indicates the location of the control. It contains the width and height of the control and the location of its upper left corner on the form.
ClientRectangle   A Rectangle object that indicates the location of the client area. It contains the width and height of the client area where drawing can occur. The upper left corner of the client area is specified as (0,0).
ClientSize   A Size object containing the width and height of the client area where drawing can occur.
Dock   Indicates to which edge of the parent container a control is docked. The possible values are Bottom, Fill, Left, None, Right, Top, Bottom.
Location   A Point object containing the coordinates of the upper left corner of the control.
Size   A Size object containing the width and height of the control.
ForeColor   The foreground color of the control used for drawing or printing on it.
BackgroundImage   The background image of the control to be used as wallpaper for it.
Text   The text associated with the control.
RightToLeft   Indicates whether the control's elements are aligned to
upport locales using right-to-left fonts (Boolean). Examples of such fonts are Arabic and
Hebrew.
Tag   A programmer defined object that contains data about the control.
Disposing   Indicates whether the control is in the process
of being disposed of by a call to the Dispose method.
IsDisposed   Indicates whether the control has been disposed of by a call
to the Dispose method.
CanFocus   Indicates whether the control can receive focus (Boolean).
A control can only receive the focus if both Enabled and Visible are set to True for the
control.
CanSelect   Indicates whether the control can be selected (Boolean).
This property returns true if the control has ControlStyles.Selectable set to true,
is contained in another control, and all its parent controls are both visible and enabled.
ContainsFocus   Indicates whether the control, or one of its child
controls, currently has the focus (Boolean).
Focused   Indicates whether the control has the focus (Boolean).
TabIndex   Indicates the order that controls having TabStop = True
receive the focus.
TabStop   Indicates whether the control can receive the focus via tabbing (Boolean).
Cursor   The cursor that is displayed when the mouse passes over the control.
HasChildren   Indicates whether the control contains one or
more child controls (Boolean).
Parent   A Control object that represents the parent or container
control of the control.
Site   The site of the control. A site binds a control to a container.
TopLevelControl   The parent of the parent or the parent ... of the control
that does not itself have a parent. Typically, the TopLevelControl is the form that
contains the control.
AccessibleDefaultActionDescription   The default
action description of the control for use by accessibility client applications.
AccessibleName   The description of the control used by
accessibility client applications.
AccessibleRole   The accessible role of the control.
Values are taken from the Control.AccessibleRole enumeration.
AccessibilityObject   Provides information that accessibility
applications use to adjust an application's UI for users with impairments.
IsAccessible   Indicates whether the control is visible to
accessibility applications (Boolean).
BackColor   The background color of the control.
Font   A Font object containing information about the text displayed in
the control. Some of the information contained in the font object is the
font name, size, and boolean values that indicate if the text is bold, italic, overstruck,
or underlined.
Created   Indicates whether the control has been created (Boolean).
CausesValidation   Indicates whether the control causes validation
to be performed on any controls that require validation when it receives focus (Boolean).
If value is set to True, the control causes validation to be performed on any controls
requiring validation when it receives focus. CausesValidation is usually set to false for
help keys.
Capture   Indicates whether the control has captured the mouse (Boolean).
The mouse is usually only captured during drag operations.
Controls   The collection of controls that a parent control contains.
AccessibleDescription   The description of the control used by accessibility
client applications.
AllowDrop   Indicates whether the control is visible to accessibility
applications (Boolean).
Dispose   Releases the unmanaged resources used by the control and optionally releases the managed resources.
GetChildAtPoint   Returns the child control that is located at the specified coordinates.
GetContainerControl   Returns the next container control up the control's chain of parent controls.
GetNextControl   Retrieves the next control forward or back in the tab order of child controls.
ResetCursor   Reset Cursor property to default value.
ResetFont   Reset Font property to default value.
ResetForeColor   Reset ForeColor property to default value.
ResetRightToLeft   Reset RightToLeft property to default value.
ResetText   Reset Text property to default value.
Hide   Change the value of the Visible property to False.
Invalidate   Invalidates a specific region of the control and causes a paint message to be sent to the control.
Refresh   Forces the control to invalidate its client area and immediately redraw itself and any child controls.
SendToBack   Sends the control to the back of the z-order.
Show   Change the value of the Visible property to True.
Update   Causes the control to redraw the invalidated regions within its client area.
PointToScreen   Computes the location of the specified client point into screen coordinates.
RectangleToClient   Computes the size and location of the specified screen rectangle in client coordinates.
RectangleToScreen   Computes the size and location of the specified client rectangle in screen coordinates.
Scale   Resize the control and any child controls by a specified factor.
Click   Occurs when the mouse is pressed and released with the cursor over that control.
MouseDown   Occurs when the mouse is pressed with the cursor over that control.
MouseEnter   Occurs when the mouse moves the cursor from outside the boundary of a control to inside the boundary.
MouseLeave   Occurs when the mouse moves the cursor from inside the boundary of a control to outside the boundary.
MouseMove   Occurs when the mouse moves the cursor over the control.
MouseWheel   Occurs when the mouse wheel is turned.
MouseUp   Occurs when the mouse is released with the cursor over that control.
Leave   Occurs when the control loses the focus due to another control receiving the focus.
Validating   Occurs when the control is finished validating.
Validated   Occurs when the control is validating.
Paint   Occurs when the control is redrawn.
KeyUp   Occurs when a key is released while the control has focus. Use then the key code for the released key is required.
KeyDown   Occurs when a key is pressed while the control has focus. Use then the key code for the pressed key is required.
BackgroundImageChanged   Occurs when the BackgroundImage property is changed.
CausesValidationChanged   Occurs when the CausesValidation property is changed.
ContextMenuChanged   Occurs when the ContextMenu property is changed.
CursorChanged   Occurs when the Cursor property is changed.
DockChanged   Occurs when the Dock property is changed.
EnabledChanged   Occurs when the Enabled property is changed.
FontChanged   Occurs when the Font property is changed.
ForeColorChanged   Occurs when the ForeColor property is changed.
LocationChanged   Occurs when the Location property is changed.
ParentChanged   Occurs when the Parent property is changed.
Resize   Occurs when the control is resized by the user.
RightToLeftChange   Occurs when the RightToLeft property is changed.
StyleChanged   Occurs when the Style property is changed.
SizeChanged   Occurs when the Size Property is changed.
SystemColorsChanged   Occurs when the SystemColors property is changed.
TabIndexChanged   Occurs when the TabIndex property is changed.
TabStopChanged   Occurs when the TabStop property is changed.
TextChanged   Occurs when the Text property is changed.
VisibleChanged   Occurs when the Visible property is changed.
DragEnter   Occurs -when an object is dragged into the control's bounds.
DragLeave   Occurs when an object is dragged out of the control's bounds.
DragOver   Occurs when an object is dragged over the control's bounds.
GiveFeedback   Occurs when a drag-and-drop operation is started. This event allows the source of a drag event to modify the appearance of the mouse pointer in order to give the user visual feedback during a drag-and-drop operation.
QueryContinueDrag   Occurs during a drag-and-drop operation and allows the drag source to determine whether the drag-and-drop operation should be canceled.
ControlRemoved   Occurs when a control is removed from a parent control.
ImageAlign   The alignment of an image that is displayed in the control. Values are chosen from the ContentAlignment enumeration: BottomCenter, BottomLeft, BottomRight, MiddleCenter, MiddleLeft, MiddleRight, TopCenter, TopLeft, TopRight.
ImageIndex   The index of the ImageList image to display.
ImageList   The name of the ImageList to use for displaying an image.
AutoCheck   Indicates whether the Checked value and the appearance of the control automatically change when the control is clicked (Boolean).
Checked   Indicates whether the radio button is checked (Boolean).
CheckState   Indicates the state of the radio button. Values are chosen from the CheckState enumeration: Checked, Indeterminate, Unchecked.
ThreeState   Indicated whether the check box will allow three check states (Checked, Indeterminate, Unchecked) rather than two.
CheckedChanged   Occurs when the CheckedChanged property is changed.
CheckStateChanged   Occurs when the CheckStateChanged property is changed.
CheckedItems   The collection of checked items.
CheckOnClick   Indicates whether the check box should be toggled when an item is selected (Boolean).
ThreeDCheckBoxes   Indicates whether the check boxes display as Flat or Normal (Boolean).
GetItemCheckState   The check state of the current item. Values are chosen from the CheckState enumeration: Checked, Indeterminate, Unchecked.
SetItemChecked   Set an item of a given index to checked.
SetItemCheckState   Set the state of an item of a given index. Values are chosen from the CheckState enumeration: Checked, Indeterminate, Unchecked.
DropDownStyle   The style of the combo box. Values are chosen form the ComboBoxStyle enumeration: DropDown (user can edit the text in the text box; the The user must click the arrow button to display the list), DropDownList (user cannot edit the text in the text box; the The user must click the arrow button to display the list), Simple (user can edit the text in the text box; the list is always visible if the height of the combo box is large enough).
DropDownWidth   The width of the of the drop-down portion of a combo box.
DroppedDown   Indicates if the combo box is displaying its drop-down portion.
IntegralHeight   Indicates if the combobox should resize to avoid showing partial items (Boolean).
ItemHeight   The height of an item in a user drawn combobox.
Items   The collection of items stored in a combobox. Note: the items need not be String objects.
MaxDropDownItems   The maximum number of items to be shown in the drop-down listbox.
MaxLength   The maximum number of characters allowed in the editable textbox.
PreferredHeight   The combined height of all items.
SelectedIndex   The zero-based index of the currently selected item. The value -1 is returned if there are no selected items. If the SelectionMode is set to SelectionMode.MultiSimple or SelectionMode.MultiExtended any of the selected indices may be returned.
SelectedIndex   The zero-based index of the currently selected item. The value -1 is returned if there are no item selected.
SelectedItem   A reference to the selected item. If no item is selected, Nothing is returned.
SelectedText   A string that represents the currently selected text in the editable textbox. If DropDownStyle is set to ComboBoxStyle.DropDownList, the return is an empty string.
SelectionLength   The number of characters selected in the editable textbox of the combobox.
SelectionStart   The first character of the characters selected in the editable textbox of the combobox.
Sorted   Indicates whether the items are maintained in sorted order (Boolean).
Text   The current text in the editable text box of the combobox.
EndUpdate   Resumes drawing the ListBox control after drawing is suspended by the BeginUpdate method.
FindString   Finds the first item that starts with the specified string.
FindStringExact   Finds the first item that exactly matches the specified string.
GetItemHeight   The height of an item of a given index.
Select   Select the specified text in the editable textbox.
SelectAll   Select all the text in the editable textbox.
DropDown   Occurs when the drop-down portion of a ComboBox is shown.
DropDownStyleChanged   Occurs when the DropDownStyleProperty is changed.
MeasureItem   Occurs when an owner-drawn combobox is created and the sizes of the list items are determined.
SelectedIndexChanged   Occurs when the SelectedIndex property is changed.
SelectionChangeCommitted   Occurs when the selected item has changed and that change is committed.
Images   The collection of images.
ImageSize   The common size of the images. Default is 16x16; Maximum is 256x156.
TransparentColor   The color to treat as transparent.
BorderStyle   The border style for the control. Border styles are chosen from the BorderStyle enumeration: Fixed3D, FixedSingle, None.
FlatStyle   The flat style appearance of the label control. Values are chosen from FlatStyle enumeration: Flat, Popup, Standard, System.
Image   The image that is displayed.
ImageAlign   The alignment of an image that is displayed in the control. Values are chosen from the ContentAlignment enumeration: BottomCenter, BottomLeft, BottomRight, MiddleCenter, MiddleLeft, MiddleRight, TopCenter, TopLeft, TopRight.
ImageIndex   The index of the ImageList image to display.
ImageList   The name of the ImageList to use for displaying an image.
PreferredHeight   The preferred height of the control (ReadOnly). The height of the control (in pixels), assuming a single line of text is displayed.
PreferredWidth   The preferred width of the control (ReadOnly). The width of the control (in pixels), assuming a single line of text is displayed.
TextAlign   The alignment of text in the label. Values are chosen from the ContentAlignment enumeration: BottomCenter, BottomLeft, BottomRight, MiddleCenter, MiddleLeft, MiddleRight, TopCenter, TopLeft, TopRight.
DrawMode   The drawing mode for the control. Values are chosen from the DrawMode enumeration: Normal, OwnerDrawFixed, OwnerDrawVariable.
HorizontalScrollBar   Indicates whether a horizontal scroll bar is displayed (Boolean).
IntegralHeight   Indicates whether the listbox should resize to avoid showing partial items (Boolean).
ItemHeight   The height of an item in a user drawn listbox.
Items   The collection of items stored in a listbox. Note: the items need not be String objects.
MultiColumn   Indicates whether the ListBox can have multiple columns (Boolean).
PreferredHeight   The combined height of all items.
ScrollAlwaysVisible   Indicates if the vertical scroll bar is shown at all times (Boolean).
SelectedIndex   The zero-based index of the currently selected item. The value -1 is returned if there are no selected items. If the SelectionMode is set to SelectionMode.MultiSimple or SelectionMode.MultiExtended any of the selected indices may be returned.
SelectedIndices   The collection of zero-based indices of the currently selected items. The count of the collection may be more than one if the SelectionMode is set to SelectionMode.MultiSimple or SelectionMode.MultiExtended.
SelectedItem   A reference to the selected item. If no item is selected, Nothing is returned. If the SelectionMode is set to SelectionMode.MultiSimple or SelectionMode.MultiExtended any of the selected items may be returned.
SelectedItems     The collection of currently selected items. The count of the collection may be more than one if the SelectionMode is set to SelectionMode.MultiSimple or SelectionMode.MultiExtended.
SelectionMode   The method in which items are selected. If set to SelectionMode.One, only one item can be selected. If set to SelectionMode.MultiSimple, a block of contiguous items can be selected (with the shift key down). If set to SelectionMode.MultiExtended multiple possibly noncontiguous items can be selected (with the control key down).
Sorted   Indicates whether the items are maintained in sorted order (Boolean).
Text   Contains the currently selected item r is r is a String object. If r is not a String object, r.ToString() is displayed.
TopIndex   The index of the top visible item.
UseTabStops   Indicates whether tab characters can be recognized and expanded (Boolean).
ClearSelected   Unselects all the items.
EndUpdate   Resumes drawing the ListBox control after drawing is suspended by the BeginUpdate method.
FindString   Finds the first item that starts with the specified string.
FindStringExact   Finds the first item that exactly matches the specified string.
GetItemHeight   The height of an item of a given index.
GetItemRectangle   The bounding rectangle for an item of a given index.
GetSelected   Indicates whether a specified item is selected.
IndexFromPoint   The zero-based index of the item at the specified coordinates.
SetSelected   Selects or clears the selection for the specified item.
MeasureItem   Occurs when an owner-drawn ListBox is created and the sizes of the list items are determined.
SelectedIndexChanged   Occurs when the SelectedIndex property is changed.
DisplayMember   A string that specifies the property of the data source whose contents you want to display.
SelectedIndex   The zero-based index of the currently selected item.
SelectedValue   The value of the member property specified by the ValueMember property.
ValueMember   A string that specifies the property of the data source from which to draw the value.
Image   The image that the PictureBox displays.
SizeMode   Indicates how the image is displayed. Values are chosen from the PictureBoxSizeMode enumeration: AutoSize, CenterImage, Normal, StretchImage.
AutoCheck   Indicates whether the Checked value and the appearance of the control automatically change when the control is clicked (Boolean).
CheckAlign   The location of the check box portion of the radio button control. Values are chosen from the ContentAlignment enumeration: BottomCenter, BottomLeft, BottomRight, MiddleCenter, MiddleLeft, MiddleRight, TopCenter, TopLeft, TopRight.
Checked   Indicates whether the radio button is checked (Boolean).
CheckedChanged   Occurs when the Checked property is changed.
Maximum   Maximum value of the scrollbar.
Minimum   Minimum value of the scrollbar.
SmallChange   the value added to or subtracted from the Value property when the arrow keys are pressed, or when the ends of the scrollbar are clicked.
Value   The numeric value of the scrollbar.
ValueChanged   Occurs when the Value property of a scrollbar changes, either by movement of the slider or by manipulation in code.
CharacterCasing   Indicates whether the TextBox control modifies the case of characters as they are typed. Values are chosen from the CharacterCasing enumeration: Lower, Normal, Upper.
PasswordChar   The character used to mask characters of a password in a single-line TextBox control
ScrollBars   Determines which scroll bars should appear in a multiline TextBox control. Values are chosen from the TextBox.ScrollBars enumeration: Both, Left, None, Right.
TextAlign   The alignment of text in the label. Values are chosen from the ContentAlignment enumeration: BottomCenter, BottomLeft, BottomRight, MiddleCenter, MiddleLeft, MiddleRight, TopCenter, TopLeft, TopRight.
MultiLineChanged   Occurs when the MultiLine property is changed.
ReadOnlyChanged   Occurs when the ReadOnly property is changed.
AutoSize   Indicates whether the control is automatically resized to display its entire contents (Boolean).
BorderStyle   The border style for the control. Border styles are chosen from the BorderStyle enumeration: Fixed3D, FixedSingle, None.
CanUndo   Indicates whether the user can undo the previous operation in a text box control (Boolean).
HideSelection   Indicates whether the selected text in the text box control remains highlighted when the control loses focus.
Lines   The lines of text in a text box control as an array of strings.
MaxLength   The maximum number of characters the user can type or paste into the text box control.
Modified   Indicates that the text box control has been modified by the user since the control was created or its contents were last set in code (Boolean).
MultiLine   Indicates whether this is a multiline text box control (Boolean).
PreferredHeight   The preferred height of the control (ReadOnly). The height of the control (in pixels), assuming a single line of text is displayed.
ReadOnly   Indicates whether the user is allowed to type to change the text (False) or if it is read only (True).
SelectedText   The currently selected text in the control.
SelectionLength   The length of the selected text.
SelectionStart   The index of the position where the selected text starts.
TextLength   The length of the selected text.
WordWrap   Indicates whether a multiline text box control automatically wraps words to the beginning of the next line when necessary.
Clear   Sets the text in the textbox to the empty string.
ClearUndo   Clears information about the most recent operation from the undo buffer of the text box.
Copy   Copies the current selection in the text box to the Clipboard.
Cut   Moves the current selection in the text box to the Clipboard.
Paste   Replaces the current selection in the text box with the contents of the Clipboard.
ScrollToCarat   Scrolls the contents of the control to the current caret position.
Select   Selects a range of text in the text box.
SelectAll   Selects all text in the text box.
Undo   Undoes the last edit operation in the text box.
AutoSizeChanged   Occurs when the AutoSize property is changed.
BorderStyleChanged   Occurs when the BorderStyle property is changed.
HideSelectionChanged   Occurs when the HideSelection property is changed.
ModifiedChanged   Occurs when the Modified property is changed.
ReadOnlyChanged   Occurs when the ReadOnly property is changed.
LargeChange   The value to be added to or subtracted from the Value property when the track bar on either side of the slider is clicked, or when the PageUp or PageDown keys are clicked.
Maximum   Maximum value of the slider.
Minimum   Minimum value of the slider.
SmallChange   the value added to or subtracted from the Value property when the arrow keys are pressed.
Orientation   Determines the orientation of the track bar. Values are chosen from the Orientation enumeration: Horizontal, Vertical.
TickFrequency   The frequency of the tick marks.
TickStyle   Indicates how to display the tick marks on the track bar. Values are chosen from the TickStyle enumeration: Both, BottomRight, None, TopLeft.
Value   The numeric value of the track bar.
ValueChanged   Occurs when the Value property of a track bar changes, either by movement of the slider or by manipulation in code.