Autodesk.AutoCAD.DatabaseServices Namespace > Entity Class > Entity Methods > GetGripPoints Method > GetGripPoints(Point3dCollection, IntegerCollection, IntegerCollection) Method
Entity.GetGripPoints(Point3dCollection, IntegerCollection, IntegerCollection) Method   
Description

 

 

Function usage

This function supports "old style" grips, in applications that existed before the enhancement of grip functionality. 

This function is not intended to be called by ObjectARX applications. However, it is possible to do so (for example, as a pass-through from the GetStretchPoints() method).

Function implementation in derived classes

This function should append to the gripPoints array any points that are to treated as grip points for the entity. 

The gripPoints array is passed to all entities involved in the grip operation, so the array may already contain grip points for other entities. Therefore, it is very important to append the new points rather than assigning them to any existing elements in the array. 

The snapModes and geometryIds arguments are not currently used.

Visual Basic
Public Function GetGripPoints(
    gripPoints As Point3dCollection, 
    snapModes As IntegerCollection, 
    geometryIds As IntegerCollection
) As void
C#
public void GetGripPoints(
    Point3dCollection gripPoints, 
    IntegerCollection snapModes, 
    IntegerCollection geometryIds
);
Parameters
Parameters 
Description 
Point3dCollection gripPoints 
Input pre-existing array to append the grip points to; output with the entity's grip points appended 
IntegerCollection snapModes 
not currently used 
IntegerCollection geometryIds 
not currently used 
Links
   Comments?