TextPoint.EqualTo Method
Returns whether the value of the given point object's AbsoluteCharOffset property is equal to that of the calling TextPoint object.
Namespace: EnvDTE
Assembly: EnvDTE (in EnvDTE.dll)
Syntax
'Declaration
Function EqualTo ( _
Point As TextPoint _
) As Boolean
bool EqualTo(
TextPoint Point
)
bool EqualTo(
[InAttribute] TextPoint^ Point
)
abstract EqualTo :
Point:TextPoint -> bool
function EqualTo(
Point : TextPoint
) : boolean
Parameters
Point
Type: EnvDTE.TextPointRequired. A TextPoint object to compare to the calling point object.
Return Value
Type: System.Boolean
A Boolean value indicating true if Point has the same AbsoluteCharOffset property value as the calling point object.
Remarks
EqualTo throws a ArgumentException exception if Point is not in the same document as the calling point object.
.NET Framework Security
- Full trust for the immediate caller. This member cannot be used by partially trusted code. For more information, see Using Libraries from Partially Trusted Code.
See Also
Reference
Other Resources
How to: Compile and Run the Automation Object Model Code Examples