WANALYZER_RULERS_SETTINGS structure |
|
The WANALYZER_RULERS_SETTINGS structure (defined as WANALYZER_RULERS_SETTINGS_DLL when used for COM interoperability) 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 class section.
C# definition
public struct WANALYZER_RULERS_SETTINGS
{
public enumVolumeScales nAmplitudeScale;
public bool bVisibleLeft;
public bool bTicksLeft;
public bool bVisibleRight;
public bool bTicksRight;
public bool bVisibleTop;
public bool bTicksTop;
public bool bVisibleBottom;
public bool bTicksBottom;
public Color colorBackground;
public Color colorTicks;
public Color colorText;
public Int16 nTopRulerHeightInPix;
public Int16 nBottomRulerHeightInPix;
public Int16 nVertRulerWidthInPix;
public float fTimeTicksFrequencyInPix;
}
Definition for COM Interoperability
public struct WANALYZER_RULERS_SETTINGS_DLL
{
public Int32 nAmplitudeScale;
public Int16 bVisibleLeft;
public Int16 bTicksLeft;
public Int16 bVisibleRight;
public Int16 bTicksRight;
public Int16 bVisibleTop;
public Int16 bTicksTop;
public Int16 bVisibleBottom;
public Int16 bTicksBottom;
public Int32 colorBackground;
public Int32 colorTicks;
public Int32 colorText;
public Int16 nTopRulerHeightInPix;
public Int16 nBottomRulerHeightInPix;
public Int16 nVertRulerWidthInPix;
public float fTimeTicksFrequencyInPix;
}
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. |