Performs a hit test on the section plane or table cell at the specified location.
Supported platforms: Windows only
VBA:
object.HitTest varPtHit, pHit, pSegmentIndex, pPtOnSegment, pSubItem Object
Type: Section
The object this method applies to.
Access: Input-only
Type: Variant
Point at which to perform the hit test.
Access: Output-only
Type: Boolean
True if the given point lies on the section plane.
Access: Output-only
Type: Integer
Index of segment on the section line that passes near or through the hit point.
Access: Output-only
Type: Variant
The actual point on the section plane geometry. This parameter may return nothing if this data is not required.
Access: Output-only
Type: AcSectionSubItem enum
One or more of the values. This parameter may return nothing if this data is not required.
VBA:
RetVal = object.HitTest(wpt, wviewVec, resultRowIndex, resultColumnIndex)
Type: Table
The object this method applies to.
Access: Input-only
Type: Variant
3D point in WCS specifying the input pick point.
Access: Input-only
Type: Variant
3D vector in WCS specifying the view direction for the hit test.
Access: Output-only
Type: Long
Row index of the selected cell.
Access: Output-only
Type: Long
Column index of the selected cell.
No return value.
Type: Boolean
True if the hit test is in a table cell.
Table: This function performs a hit test by specifying a point and viewing direction. The cell hit by the ray is returned.
VBA:
Not available
Visual LISP:
Not available