WANALYZER_BUDDY_TEXT structure |
|
The WANALYZER_BUDDY_TEXT structure describes settings applied to a "buddy" text assigned to a graphic item, available on the Waveform Analyzer, through the WaveformAnalyzer.GraphicItemBuddyTextSet method. The current settings of the "buddy" text can be retrieved through the WaveformAnalyzer.GraphicItemBuddyTextParamsGet method and modified through the WaveformAnalyzer.GraphicItemBuddyTextParamsSet 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
{
OLE_COLOR colorText;
OLE_COLOR colorTextOutline;
short nOutlineWidth;
short nTranspFactor;
long nAlignment;
short bKeepVisible;
} WANALYZER_BUDDY_TEXT;
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 Recorder\include).
Visual Basic definition
Public Type WANALYZER_BUDDY_TEXT
colorText As OLE_COLOR
colorTextOutline As OLE_COLOR
nOutlineWidth as Integer
nTranspFactor As Integer
nAlignment as enumBuddyAlignment
bKeepVisible as Boolean
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 Recorder\include).
Member |
Description |
||||||||||||||||||||||||||||||
|
|
||||||||||||||||||||||||||||||
Text color |
|||||||||||||||||||||||||||||||
Text outline color. If this color is set to a value identical to the colorText field, no outline is rendered. |
|||||||||||||||||||||||||||||||
Text outline width in pixels. If this field is set to 0, no outline is rendered. |
|||||||||||||||||||||||||||||||
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. |
|||||||||||||||||||||||||||||||
Alignment respect to the graphic item. Supported values are the following:
|
|||||||||||||||||||||||||||||||
Boolean value that specifies if the buddy text is kept visible when reaching the limits of the waveform visible range. Supported values are the following:
|