WANALYZER_VERTICAL_LINE structure |
|
The WANALYZER_VERTICAL_LINE structure describes settings applied to a vertical line added to the Waveform Analyzer through the GraphicItemVerticalLineAdd method. The current settings can be retrieved through the GraphicItemVerticalLineParamsGet method and modified through the GraphicItemVerticalLineParamsSet method.
C# definition
public struct WANALYZER_VERTICAL_LINE
{
public Color color;
public enumWaveformLineDashStyles nDashStyle;
public Int16 nWidth;
public Int16 nTranspFactor;
public enumLineCaps nHighCap;
public enumLineCaps nLowCap;
public enumLineDashCaps nDashCap;
};
Member |
Description |
||||||||||||||||||||||||
|
|
||||||||||||||||||||||||
Color used for rendering the line. |
|||||||||||||||||||||||||
Line dash style. Supported values are the following:
On the screenshot below you can see the different types of vertical lines with the corresponding value displayed on the buddy text:
|
|||||||||||||||||||||||||
Line width in pixels. |
|||||||||||||||||||||||||
Transparent factor. This value can range from 0 (total opacity) to 255 (total transparency). Values outside of this range will be automatically capped to the nearest valid value. |
|||||||||||||||||||||||||
Type of cap for the high end of the line. Supported values are the following:
On the screenshot below you can see the different types of line caps with the corresponding value displayed on the buddy text:
|
|||||||||||||||||||||||||
Type of cap for the low end of the line. Supported values are the same as seen for the nHighCap field above. |
|||||||||||||||||||||||||
Type of dash/dot cap for the line. Supported values are the following:
On the screenshot below you can see the different types of line dash caps with the corresponding value displayed on the buddy text:
|