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