A  Properties,Methods,Events



Alignment - Property Read Only   

Use                 to align content into the object used  

Apply to            CheckBox -  Label -  OptionButton -  TextBox

Sintax -            [Object].Alignment = (Value) or (Costant)

                       Costants            Value
                       vbLeftJustify         0     	 aligned on left
vbRightJustify 1
aligned on right
vbCenter 2
centered (for TextBox and Label only) Does not work with Multiline TextBox as always set to 0 (default) Appearance - Property Read Only Use to select plain objects or 3D objects Apply to Form and relative objects therein Sintax - [Object].Appearance = (Value) Value 0 Flat Appearance
1
Three dimensional Appearance (default). Autosize - Property Use to modify authomatically the object dimension Apply to PictureBox - Label Sintax - [Object].AutoSize = (Boolean)

Boolean True Resize to show all the content False Shows only what is visible in current size (default) AddItem - Method Use to add an item to the object
Apply to             ListBox -  ComboBox -  Grid

Sintax -             [Object].AddItem (item), (index)

                        Item                      index
                    Any String          Integer Number (optional)

Note: Use TAB to separate multiple string to insert into a Grid row
         First Index is 0 (default)
         If Index omitted new string will be appended at the end of the
         existing list. If property Sort is True the new string will be inserted
         in the correct place and will get the relative Index