Table of Contents

PSSTYLE Property

Applies To

All Controls

Description

A Get_Property only property that returns the current Presentation Server style for a control.

Usage

psStyle = Get_Property(objectname,"PSSTYLE")

Returns

Value returned by Get_Property.

ValueDescription
psStyleA hexadecimal value of the current Presentation Server style, in the format 0xNNNNNNNNN.

See Also

Style property, COLSTYLE message, Bitwise operators, IConv( expression, "MX"), OConv( expression, "MX")

Example

Declare function Get_Property, Set_Property

* retrieve the PSSTYLE property of a LIST control.

*If the LISTBOX control contains the default properties, the PSSTYLE property should return 0x0.

* If the LISTBOX control has the "ANCHORRIGHT" property set then the PSSTYLE property would return 0x1000.

psStyle = Get_Property(@window: ".LIST_1", "PSSTYLE")