WANALYZER_RULERS_SETTINGS structure |
|
The WANALYZER_RULERS_SETTINGS structure describes settings applied while rendering the time and amplitude rulers on the Waveform Analyzer. The current settings can be retrieved through the WaveformAnalyzer.SettingsRulersGet method and modified through the WaveformAnalyzer.SettingsRulersSet method.
For details about the use of the Waveform Analyzer refer to the How to use the Waveform Analyzer section.
For further details about methods of the Waveform Analyzer refer to the WaveformAnalyzer object section.
Visual C++ definition
typedef struct
{
long nAmplitudeScale;
short bVisibleLeft;
short bTicksLeft;
short bVisibleRight;
short bTicksRight;
short bVisibleTop;
short bTicksTop;
short bVisibleBottom;
short bTicksBottom;
OLE_COLOR colorBackground;
OLE_COLOR colorTicks;
OLE_COLOR colorText;
short nTopRulerHeightInPix;
short nBottomRulerHeightInPix;
short nVertRulerWidthInPix;
float fTimeTicksFrequencyInPix;
} WANALYZER_RULERS_SETTINGS;
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 Sound Editor\include).
Visual Basic definition
Public Type WANALYZER_RULERS_SETTINGS
nAmplitudeScale as enumVolumeScales
bVisibleLeft as Boolean
bTicksLeft as Boolean
bVisibleRight as Boolean
bTicksRight as Boolean
bVisibleTop as Boolean
bTicksTop as Boolean
bVisibleBottom as Boolean
bTicksBottom as Boolean
colorBackground as OLE_COLOR
colorTicks as OLE_COLOR
colorText as OLE_COLOR
nTopRulerHeightInPix as Integer
nBottomRulerHeightInPix as Integer
nVertRulerWidthInPix as Integer
fTimeTicksFrequencyInPix as Single
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 Sound Editor\include).
Member |
Description |
|||||||||
|
|
|||||||||
Scale used for vertical rulers indicating waveform amplitude. Supported values are the following:
|
||||||||||
Boolean value that specifies if the left amplitude ruler is visible. Supported values are the following:
|
||||||||||
Boolean value that specifies if the left amplitude ruler has ticks. Supported values are the following:
|
||||||||||
Boolean value that specifies if the right amplitude ruler is visible. Supported values are the following:
|
||||||||||
Boolean value that specifies if the right amplitude ruler has ticks. Supported values are the following:
|
||||||||||
Boolean value that specifies if the top time ruler is visible. Supported values are the following:
|
||||||||||
Boolean value that specifies if the top time ruler has ticks. Supported values are the following:
|
||||||||||
Boolean value that specifies if the bottom time ruler is visible. Supported values are the following:
|
||||||||||
Boolean value that specifies if the bottom time ruler has ticks. Supported values are the following:
|
||||||||||
Color used for rendering the rulers background. |
||||||||||
Color used for rendering rulers ticks. |
||||||||||
Color used for rendering rulers texts. |
||||||||||
Height of the top time ruler in pixels. The default value is 16 pixels. |
||||||||||
Height of the bottom time ruler in pixels. The default value is 16 pixels. |
||||||||||
Width of vertical amplitude rulers in pixels. The default value is 41 pixels. |
||||||||||
Frequency of the time ticks in pixels. The default value is 40 pixels. |