Syntax 1 |
object.property |
Syntax 2 |
structure.member |
Description |
Separates an object from a property or a structure from a structure member. |
Examples |
This example uses the period to separate an object from a property. Sub Main() |
|
This example uses the period to separate a structure from a member. Type Rect Sub Main() Dim r As Rect r. left = 10 r. rigth = 12 Msgbox "r.left = "& r.left & ", r.right = " & r.right End Sub |
See Also |
Objects (topic). |
Symbols |