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