ImageGear v26.3 - Updated
ImageGear.Formats.Pdf Assembly / ImageGear.Formats.PDF Namespace / ImGearPDEText Class / IsAtPoint Method / IsAtPoint(ImGearPDETextFlags,Int32,ImGearPDFFixedPoint) Method
ImGearPDETextFlags value that specifies whether index refers to the character offset from the beginning of the text object or the index of the text run in the text object. Must be either CHAR for a text character or RUN for a text run.
Index of the character or text run in the text object.
A point, specified in user space coordinates.




In This Topic
    IsAtPoint(ImGearPDETextFlags,Int32,ImGearPDFFixedPoint) Method
    In This Topic
    Tests whether a point is on specified text.
    Syntax
    'Declaration
     
    Public Overloads Function IsAtPoint( _
       ByVal options As ImGearPDETextFlags, _
       ByVal index As Integer, _
       ByVal point As ImGearPDFFixedPoint _
    ) As Boolean
    'Usage
     
    Dim instance As ImGearPDEText
    Dim options As ImGearPDETextFlags
    Dim index As Integer
    Dim point As ImGearPDFFixedPoint
    Dim value As Boolean
     
    value = instance.IsAtPoint(options, index, point)
    public bool IsAtPoint( 
       ImGearPDETextFlags options,
       int index,
       ImGearPDFFixedPoint point
    )
    public: bool IsAtPoint( 
       ImGearPDETextFlags options,
       int index,
       ImGearPDFFixedPoint* point
    ) 
    public:
    bool IsAtPoint( 
       ImGearPDETextFlags options,
       int index,
       ImGearPDFFixedPoint^ point
    ) 

    Parameters

    options
    ImGearPDETextFlags value that specifies whether index refers to the character offset from the beginning of the text object or the index of the text run in the text object. Must be either CHAR for a text character or RUN for a text run.
    index
    Index of the character or text run in the text object.
    point
    A point, specified in user space coordinates.

    Return Value

    True if the point is on the text, False otherwise.
    See Also