Write / Read |
About Display Colors |
Description |
Set and return the background color of the active window for the VNA display or hardcopy print. |
VB Syntax |
colors.ActiveBackground = value |
Variable |
(Type) - Description |
colors |
A ComColors (object) |
value |
(Long Integer) - RGB color of the ActiveBackground pen. Convert the three RGB colors to an integer as follows: RGB = R+(G*2^8)+(B*2^16) To find the three RGB values from the Display Colors dialog, click Change Color, then Define Custom Color. |
Return Type |
Long |
Default |
Display = 0,0,24 |
Examples |
R = 10 |
C++ Syntax |
HRESULT get_ActiveBackground(long* pVal); HRESULT put_ActiveBackground(long newVal); |
Interface |
IColors2 |