SelectionColor

<< Click to Display Table of Contents >>

 

SelectionColor

Color Returns or selects the background color of the PowerExplorer object'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. Usage example, 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?