SftButton/DLL 3.0 - Button Control
SftTree/DLL 8.0 - Tree Control
SftBox/OCX 5.0 - Combo Box Control
SftButton/OCX 4.0 - Button Control
SftMask/OCX 7.0 - Masked Edit Control
SftTabs/OCX 6.5 - Tab Control (VB6 only)
SftTree/OCX 8.0 - Tree Control
SftButton/DLL 3.0 - Button Control
SftTree/DLL 8.0 - Tree Control
SftBox/OCX 5.0 - Combo Box Control
SftButton/OCX 4.0 - Button Control
SftMask/OCX 7.0 - Masked Edit Control
SftTabs/OCX 6.5 - Tab Control (VB6 only)
SftTree/OCX 8.0 - Tree Control
SftTree/NET 2.0 - Tree Control
Retrieves the masked edit control's contents.
C
int SftMask_GetText(HWND hwndCtl, LPTSTR lpszText, int cchTextMax);
C++
int CSftMask::GetText(LPTSTR lpszText, int cchTextMax) const;
hwndCtl
The window handle of the masked edit control.
lpszText
The buffer receiving the text.
cchTextMax
The buffer size, in characters.
The return value is the number of characters copied.
Whether literal characters are included depends on the iClipMode field (see SFTMASK_CLIP Constants). SftMask_GetTextA and SftMask_GetTextW are explicit ANSI/Unicode variants.
GetText should be used instead of the WM_GETTEXT message or GetWindowText, which return the display text.
See Also SetText | GetTextDisplay | SFTMASK_CLIP Constants
