Programming with Reflection
ShowDisplayAttribute
method
Syntax object.ShowDisplayAttribute Attribute, Enable
Determines whether a specified display attribute is visible.
For example, this command, used in a macro, turns off the display of column separators:
Session.ShowDisplayAttribute rcAttrColumnSep, False
Note: The syntax shown above works in a macro, but not on the Reflection command line. To turn off column separators using the Reflection command line, enter the following:
ShowDisplayAttribute rcAttrColumnSep, rcNo
Attribute Argument Type: Enumeration
Specifies the display attribute. Currently one display attribute can be
enabled or disabled:
rcAttrColumnSep
Enable or disable dots used as column separators. This affects 5250 terminal sessions only.
Enable Argument type:Boolean
Use rcYes to enable the attribute, or rcNo to disable it.