. (keyword)
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() MsgBox "The clipboard text is: " & Clipboard.GetText() End Sub |
This example uses the period to separate a structure from a member.
|
|
See Also | Objects (topic). |