Gets point from selected CAD data. LTCustomizer21 for AutoCAD LT reference manual

ActiveX
    Function get_select_point(ename As Integer, ByRef x As Double, ByRef y As Double, ByRef z As Double[, dxfcode As Short]) As Boolean
C/C++
    int WINAPI LTC_get_select_point(int ename,double result_point[3],short dxfcode=10);

parameter
ename:index number of array that read by select(). Specifies a value in range of 0 - return value of select() -1.
dxfcode: DXF group code of X coodinate (dafault is 10)
x,y,z(ActiveX only):point data.
result_point[3](C/C++ only):point data. 1st index is X, 2nd index is Y. 3rd index is Z.

return value

1(True):success.
0(False):failure.

This function gets data if point data exists in selected CAD data type. This function does not get POINT entity and gets point information in each data types.
Incidentally, VisualBasic program for getting POINT entity is :

Dim points_str As String
Dim x,y,z As Double
If LTCustomize1.get_select_data(i,0)="POINT" Then 'If point data exists on i th of array
    LTCustomize1.get_select_point(i,10,x,y,z)
EndIf