'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 orRUN
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.