SelectionColor

<< Click to Display Table of Contents >>

 

SelectionColor

Color Returns or selects the background color of a PowerExplorer window's cell, when it is selected. If no color is selected, or if this property is configured with the value -1 (minus one), it uses Windows default color. The next script contains an example of using this property, including the SelectionColorInactive property.

Set PE = Application.GetPowerExplorer("SE1.SYSTEM.[5201]")
PE.SelectionColor = RGB(255, 0, 0)
PE.SelectionColorInactive = RGB(0, 0, 255)
PE.Show

Was this page useful?