IDLitOperation::GetProperty

Syntax | Arguments | Keywords | Example | Version History

The IDLitOperation::GetProperty procedure method retrieves the value of a property or group of properties of an operation object.

Note
An operation based on the IDLitOperation class must implement this method if the operation defines one or more properties not inherited from the superclass. See Creating an Operation (iTool Developer's Guide) for details.

Syntax

Obj->[IDLitOperation::]GetProperty [, PROPERTY=variable]

Arguments

None

Keywords

Any property listed under IDLitOperation Properties that contains the word "Yes" in the "Get" column of the properties table can be retrieved using this method. To retrieve the value of a property, specify the property name as a keyword set equal to a named variable that will contain the value of the property.

Example

To retrieve the value of the REVERSIBLE_OPERATION property:

Obj->IDLitOperation::GetProperty, REVERSIBLE_OPERATION = rev 

Version History

6.0

Introduced