Check whether a character is a valid input character for this placeholder.
Syntax
Visual Basic (Declaration) | |
---|
<System.ComponentModel.DescriptionAttribute("Check whether a character is a valid input character for this placeholder.")>
Public Overrides Function IsValidChar( _
ByVal character As System.Char _
) As System.Boolean |
Visual Basic (Usage) | Copy Code |
---|
Dim instance As CustomPlaceHolder
Dim character As System.Char
Dim value As System.Boolean
value = instance.IsValidChar(character) |
C# | |
---|
[System.ComponentModel.DescriptionAttribute("Check whether a character is a valid input character for this placeholder.")]
public override System.bool IsValidChar(
System.char character
) |
Delphi | |
---|
public function IsValidChar(
character: System.Char
): System.Boolean; override; |
JScript | |
---|
System.ComponentModel.DescriptionAttribute("Check whether a character is a valid input character for this placeholder.")
public override function IsValidChar(
character : System.char
) : System.boolean; |
Managed Extensions for C++ | |
---|
[System.ComponentModel.DescriptionAttribute("Check whether a character is a valid input character for this placeholder.")]
public: System.bool IsValidChar(
System.char character
) override |
C++/CLI | |
---|
[System.ComponentModel.DescriptionAttribute("Check whether a character is a valid input character for this placeholder.")]
public:
System.bool IsValidChar(
System.char character
) override |
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