====== 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. ^Value^Description^ |psStyle|A hexadecimal value of the current Presentation Server style, in the format 0xNNNNNNNNN.| ==== See Also ==== [[style_style_ex|Style property]], [[colstyle_message|COLSTYLE message]], [[bit_wise_operators_bitand_bitor_bitxor_bitnot|Bitwise operators]], [[iconv_mx_hex_mo_mb|IConv( expression, "MX")]], [[oconv_mx_hex_mo_mb|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")