NGWS SDK Documentation  

This is preliminary documentation and subject to change.
To comment on this topic, please send us email at ngwssdk@microsoft.com. Thanks!

Property Statement

Used to assign values, arrays or other objects to variables.

[Default|ReadOnly|WriteOnly] Property varname ([parameter list]) [As typename]
   Get
      [block]
   End Get
   Set
      [block]
   End Set
End Property

Parameters

varname
Required. A unique name that identifies the Property.

parameter list

Required. This identifies the signature of the property. Unless specified, the list default is ByVal.

typename
Optional. If no data type is specified, the default type is Object.

Remarks

The declaration of the property determines what the user can do with that property:

See Also