|
|
|
SftMask.MessageInvalid Property |
Defines the error message text when the input is invalid.
Syntax
VB.NET |
String = object.MessageInvalid As String |
||
VB |
String = object.MessageInvalid As String |
||
C#.NET |
string String = object.MessageInvalid; |
||
VC++ |
_bstr_t String = object->MessageInvalid;
|
||
C |
HRESULT object->get_MessageInvalid(BSTR* String); |
||
Delphi |
String := object.MessageInvalid : WideString; |
||
VB.NET |
object.MessageInvalid = String As String |
||
VB |
object.MessageInvalid = String As String |
||
C#.NET |
string object.MessageInvalid = String; |
||
VC++ |
_bstr_t object->MessageInvalid = String;
|
||
C |
HRESULT object->put_MessageInvalid(BSTR String); |
||
Delphi |
object.MessageInvalid := String : WideString; |
object
A SftMask object.
String
Defines the error message text when the input is invalid.
Comments
The MessageInvalid property defines the error message text when the input is invalid.
This error message is displayed when an application uses the Contents.ValidMsg property to test the control contents and the control contents are invalid (based on the defined Mask).
The MessageEmpty property defines the error message text when no input is provided by the end-user.