WANALYZER_VERTICAL_LINE structure |
|
The WANALYZER_VERTICAL_LINE structure describes settings applied to a vertical line added to the TracksBoard through the TracksBoard.VerticalLineAdd method. Current settings can be retrieved through the TracksBoard.VerticalLineParamsGet method and modified through the TracksBoard.VerticalLineParamsSet method.
For details about the use of the TracksBoard refer to the How to use the TracksBoard to visually compose songs tutorial.
For further details about methods of the TracksBoard refer to the TracksBoard object section.
Visual C++ definition
typedef struct
{
OLE_COLOR color;
long nDashStyle;
short nWidth;
short nTranspFactor;
long nHighCap;
long nLowCap;
long nDashCap;
} WANALYZER_VERTICAL_LINE;
This data structure is defined inside the AdjMmsEngDef.h header file which can be found inside the product's Include directory (default \Program files\MultiMedia Soft\Active DJ Studio\include).
Visual Basic definition
Public Type WANALYZER_VERTICAL_LINE
color As OLE_COLOR
nDashStyle As enumWaveformLineDashStyles
nWidth As Integer
nTranspFactor As Integer
End Type
This data structure is defined inside the AdjMmsEngDef.bas module file which can be found inside the product's Include directory (default \Program files\MultiMedia Soft\Active DJ Studio\include).
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:
|
|||||||||||||||||||||||||
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:
|
|||||||||||||||||||||||||
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:
|