Determines whether a character is a valid value for the placeholder.
Syntax
Visual Basic (Declaration) | |
---|
<System.ComponentModel.DescriptionAttribute("Determines whether a character is a valid value for the placeholder.")>
Public Function IsValidChar( _
ByVal character As System.Char, _
ByVal placeHolder As System.Char _
) As System.Boolean |
Visual Basic (Usage) | Copy Code |
---|
Dim instance As CustomPlaceHolderCollection
Dim character As System.Char
Dim placeHolder As System.Char
Dim value As System.Boolean
value = instance.IsValidChar(character, placeHolder) |
C# | |
---|
[System.ComponentModel.DescriptionAttribute("Determines whether a character is a valid value for the placeholder.")]
public System.bool IsValidChar(
System.char character,
System.char placeHolder
) |
Delphi | |
---|
public function IsValidChar(
character: System.Char;
placeHolder: System.Char
): System.Boolean; |
JScript | |
---|
System.ComponentModel.DescriptionAttribute("Determines whether a character is a valid value for the placeholder.")
public function IsValidChar(
character : System.char,
placeHolder : System.char
) : System.boolean; |
Managed Extensions for C++ | |
---|
[System.ComponentModel.DescriptionAttribute("Determines whether a character is a valid value for the placeholder.")]
public: System.bool IsValidChar(
System.char character,
System.char placeHolder
) |
C++/CLI | |
---|
[System.ComponentModel.DescriptionAttribute("Determines whether a character is a valid value for the placeholder.")]
public:
System.bool IsValidChar(
System.char character,
System.char placeHolder
) |
Parameters
- character
- placeHolder
Return Value
true if value is found in the
CustomPlaceHolderCollection
; 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