Check whether a character is a valid input character for this placeholder.
Syntax
Visual Basic (Declaration) | |
---|
Public Overridable Function IsValidChar( _
ByVal character As System.Char _
) As System.Boolean |
Visual Basic (Usage) | Copy Code |
---|
Dim instance As PlaceHolder
Dim character As System.Char
Dim value As System.Boolean
value = instance.IsValidChar(character) |
C# | |
---|
public virtual System.bool IsValidChar(
System.char character
) |
Delphi | |
---|
public function IsValidChar(
character: System.Char
): System.Boolean; virtual; |
JScript | |
---|
public function IsValidChar(
character : System.char
) : System.boolean; |
Managed Extensions for C++ | |
---|
public: virtual System.bool IsValidChar(
System.char character
) |
C++/CLI | |
---|
public:
virtual System.bool IsValidChar(
System.char character
) |
Parameters
- character
- An input character to be checked.
Return Value
true if value is valid; otherwise, false.
Requirements
Target Platforms: Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2
See Also