PxPlus COM Support 

Accessing an Object's Properties and Methods

 

Once a reference to an object has been obtained, the next step would be to manipulate or control the object. Use the '* tick asterisk internal property to find out which properties and methods are available:

PRINT obj_ID '*

This statement returns a comma-separated list of all exposed properties and methods. Methods are indicated by having trailing parentheses "( )" appended to their name.

This list is merely an overview of the object and does not include data type or parameter information.

Note:
Some objects return a listing that only contains the PxPlus extended properties and methods (explained later). This occurs when the object does not expose run-time type information.

Proper object documentation is very important. Without proper documentation, it will be impossible to tell:

PVX Plus only provides support for the PxPlus object interface. Specific interface information for an object must be obtained from the respective vendor.

Retrieving Property Values

To retrieve a property value, place the object variable and property name on the right-hand side of the assignment:

variable = object'property[$]

Automation is case insensitive; therefore, a property name can be written in upper, lower, mixed or proper case. If the property is to return a string data type, then a $ symbol should be placed at the end of the property name. Properties may also be collections or arrays, which would require a slightly different syntax when retrieving values:

variable = object'property.get[$]( index [$], …)

The .get that is appended to the property name indicates to PxPlus that this is a property and not a method call. For string type properties, the $ symbol should be placed at the end of the .get and before the open parentheses. The index parameter indicates the property element to retrieve. Unlike PxPlus arrays, the index for the property might not be a numeric data type (check the object documentation).

Example:

STYLE=DOCUMENT'Styles.get("Normal")

Where:

Styles is a property and "Normal" indicates the indexed value to retrieve.

Note:
Some objects allow indexed property access without specifying .get notation.

Assigning Property Values

To assign a property value, place the object variable and property name on the left-hand side of the equation:

object'property [$]= variable

Automation is case insensitive. Therefore, a property name can be written in upper, lower or mixed case. If the property is to return a string data type, then a $ symbol should be placed at the end of the property name. Properties may also be collections or arrays, which would require a slightly different syntax when assigning values:

result = object'property . put ( index [ $ ], …, data [ $ ])

This syntax is identical to a method call but with a few exceptions. The result of the property assignment is always zero, and it can be disregarded. The. put indicates to PxPlus that this is a property and not a method call. And finally, the data to be assigned to the property is passed in as the last parameter between the parentheses.

This syntax style is also required when assigning an object to a non-index/non-array property. The reason for this is due to a syntax conflict in PxPlus, where the following would be invalid:

object'property =* other_object

The correct syntax for the above example would be:

result = object'property.put(*other_object)

Note:
When assigning or passing an object, it is required that an * asterisk appear before the object reference. This allows PxPlus to differentiate between a variable holding a numeric value and one that holds an object reference.

There may also be cases where the property assignment is expecting to be set by reference. A common example occurs when an object property is changed to refer to a new object. For most properties that are object types, the .put syntax will work correctly. If an error does occur, then the following syntax should be tried:

result = object'property.putref(*otherobject)

Calling Methods

To call a method, place the object variable, method name, and parameter list on the right-hand side of the equation:

result = object'method[$] (param1, param2 [, …])

Automation is case insensitive; therefore, a method name can be written in upper, lower, mixed or proper case. If the method is to return a string data type, then a $ symbol should be placed at the end of the method name. Some methods are written to accept optional parameters. In PxPlus, these would be passed using an *asterisk. See Passing Optional Parameters.

Invocation Hints

Due to PxPlus syntax restrictions, desired control of how a method is invoked and how data is returned, a set of invocation hints have been developed that can be used to direct the control of the COM interop layer.

The valid invocation hints are listed below:

.GET

Indicates that the call should be performed as a property "get". This is normally required when dealing with indexed properties, as the syntax of the statement is translated as a call.

Example:

S$ = OBJ'CELLS.GET$(1, 2)

.PUT

Indicates that the call should be performed as a property assignment. This is normally required when dealing with indexed properties, as the syntax of the statement is translated as a call.

Example:

OBJ'CELLS.PUT$(1, 2, S$)

This syntax is also required when assigning an object to a property.

Example:

OBJ'SELRANGE.PUT$(*X)

.PUTREF

Indicates that the call should be performed as a property reference assignment. This is normally required when assigning an object reference to an object's property.

.CALL

Indicates the call should be performed as a method only. Normally, the COM interop layer will attempt (through trial and error) to resolve the call as either a method or property.

.GETB$

Indicates that the returned property data, if a string type, should not be converted from double byte to ANSI string.

.CALLB$

Indicates that the returned method data, if a string type, should not be converted from double byte to ANSI string.

.GETV

Indicates that the returned property data should be returned as variant vs. its base data type. Do not use on a property that returns an internal object; e.g. *CONSTANT, *PROXY, *ERROR, *MASTER, etc. are internal objects that cannot be expressed in a variant.

.CALLV

Indicates that the returned method data should be returned as variant vs. its base data type. Do not use on a method that returns an internal object; e.g. *CONSTANT, *PROXY, *ERROR, *MASTER, etc. are internal objects that cannot be expressed in a variant.

These hints are added to the end of a method/property name so that the call reads as object'method {.hint}(parameters). If you attempt to get or set array properties without using an "invoke hint", the DLL will attempt to resolve the calling type; however, it can only do this by trial and error (up to 4 separate attempts).

Example:

The following is an example of a grid object that exposes a CELL property that is accessed using a row and column indicator:

10 DATA=GRID'CELL.GET(ROW, COL)        ! Get the cell value
20 DATA= DATA+10                              ! Add 10 to the value
30 NULL=GRID'CELL.PUT(ROW, COL, DATA) ! Set the cell value

For speed reasons, as well as for clarity, the developer should always specify a hint when calling a property using the syntax of a method call. In the previous example, line 30 should be changed to:

30 NULL=X'VAL.PUT(*Y) ! Assign object Y to X'VAL