|
AsBoolean
|
Allows the user to get and set the value inside the object as a boolean. When you assign a value using the AsBoolean property, the VType property is changed to vtBoolean.
|
|
AsChar
|
Allows the user to get and set the value inside the object as a character. When you assign a value using the AsChar property, the VType property is changed to vtChar.
|
|
AsClass
|
Allows the user to get and set the value inside the object as a class. When you assign a value using the AsClass property, the VType property is changed to vtClass.
|
|
AsCurrency
|
Allows the user to get and set the value inside the object as a currency value. When you assign a value using the AsCurrency property, the VType property is changed to vtCurrency.
|
|
AsFloat
|
Allows the user to get and set the value inside the object as a floating point number. When you assign a value using the AsFloat property, the VType property is changed to vtFloat.
|
|
AsInteger
|
Allows the user to get and set the value inside the object as an integer. When you assign a value using the AsInteger property, the VType property is changed to vtInteger.
|
|
AsInterface
|
Allows the user to get and set the value inside the object as an interface. When you assign a value using the AsInterface property, the VType property is changed to vtInterface.
|
|
AsObject
|
Allows the user to get and set the value inside the object as an object. When you assign a value using the AsObject property, the VType property is changed to vtObject.
|
|
AsPChar
|
Allows the user to get and set the value inside the object as a pointer to a character. When you assign a value using the AsPChar property, the VType property is changed to vtPChar.
|
|
AsPointer
|
Allows the user to get and set the value inside the object as a pointer. When you assign a value using the AsPointer property, the VType property is changed to vtPointer.
|
|
AsString
|
Allows the user to get and set the value inside the object as a string. When you assign a value using the AsString property, the VType property is changed to vtString.
|
|
AsVariant
|
Allows the user to get and set the value inside the object as a variant. When you assign a value using the AsVariant property, the VType property is changed to vtVariant.
|
|
AsWideString
|
Allows the user to get and set the value inside the object as a wide string. When you assign a value using the AsWideString property, the VType property is changed to vtWideString.
|
|
Unassigned
|
Returns true if a value has not been assigned to the object through an AsXXX property assignment.
|
|
Value
|
Stores the value in the object
|
|
VType
|
Returns the type of the value in the object.
VType is set by calling one of the AsXXX methods.
|