TRACKSBOARD_GENERAL_SETTINGS structure |
|
The TRACKSBOARD_GENERAL_SETTINGS structure describes the general settings applied to the TracksBoard. The current settings can be retrieved through the TracksBoard.SettingsGeneralGet method and modified through the TracksBoard.SettingsGeneralSet 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.
C# definition
public struct TRACKSBOARD_GENERAL_SETTINGS
{
public bool bAppearance3d;
public float fHorizontalZoomFactor;
public float fVerticalZoomFactor;
public Int16 nPlayHeadLineWidth;
public enumWaveformLineDashStyles nPlayHeadLineDashStyle;
public Color colorPlayHeadLine;
public enumLineCaps nPlayHeadLineHighCap;
public enumLineCaps nPlayHeadLineLowCap;
public enumLineDashCaps nPlayHeadLineDashCap;
public Int16 nPlayHeadLineTranspFactor;
public bool bItemAutoRefresh;
public bool bItemsMoveEnabled;
}
Member |
Description |
||||||||||||||||||||||||
|
|
||||||||||||||||||||||||
Boolean value that specifies if the Waveform Analyzer is displayed with 3D borders. Supported values are the following:
|
|||||||||||||||||||||||||
Floating point value indicating the factor applied to horizontal zooming operations: by default the zoom factor is 2.0. The value of this field cannot be lower than 1.01. Lower values will be automatically capped to 1.01. |
|||||||||||||||||||||||||
Floating point value indicating the factor applied to vertical zooming operations: by default the zoom factor is 2.0. The value of this field cannot be lower than 1.01. Lower values will be automatically capped to 1.01. |
|||||||||||||||||||||||||
Width in pixels of the play head line. |
|||||||||||||||||||||||||
Dash style of the play head line Supported values are the following:
On the screenshot below you can see the different dash styles with the corresponding value displayed:
|
|||||||||||||||||||||||||
Color used for rendering the play head line. |
|||||||||||||||||||||||||
Type of high cap for the play head line. Supported values are the following:
On the screenshot below you can see the different types of line caps with the corresponding value displayed:
|
|||||||||||||||||||||||||
Type of low cap for the play head line. Supported values are the same as seen for the nPositionLineHighCap field above. |
|||||||||||||||||||||||||
Type of dash/dot cap for the play head 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:
|
|||||||||||||||||||||||||
Transparent factor applied to the play head line. 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. |
|||||||||||||||||||||||||
Boolean value that specifies if the sound item is automatically refreshed during the analysis phase. Supported values are the following:
|
|||||||||||||||||||||||||
Boolean value that specifies if selected items can be moved or resized through the mouse. Supported values are the following:
|