Determine whether a character is a valid placeholder character.
Syntax
| Visual Basic (Declaration) | |
|---|
Public Function IsValidPlaceHolder( _
ByVal placeHolder As System.Char _
) As System.Boolean |
| Visual Basic (Usage) | Copy Code |
|---|
Dim instance As MaskInfo
Dim placeHolder As System.Char
Dim value As System.Boolean
value = instance.IsValidPlaceHolder(placeHolder) |
| C# | |
|---|
public System.bool IsValidPlaceHolder(
System.char placeHolder
) |
| Delphi | |
|---|
public function IsValidPlaceHolder(
placeHolder: System.Char
): System.Boolean; |
| JScript | |
|---|
public function IsValidPlaceHolder(
placeHolder : System.char
) : System.boolean; |
| Managed Extensions for C++ | |
|---|
public: System.bool IsValidPlaceHolder(
System.char placeHolder
) |
| C++/CLI | |
|---|
public:
System.bool IsValidPlaceHolder(
System.char placeHolder
) |
Parameters
- placeHolder
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