Gets selected CAD data LTCustomizer21 for AutoCAD LT reference manual

ActiveX
    Function get_select_data(ename As Integer, dxfcode As Short[, index As Integer=0]) As String
C/C++
    int WINAPI LTC_get_select_data(int ename,short dxfcode,BSTR *result1,int index=0);

parameter
ename:index number of array that read by select().Specifies value that indicates until from 0 to return value of select() -1.
dxfcode:DXF group code
index: index number when plural same DXF group codes(parameter dxfcode) exist in an entity. Starts from 0.
result1(C/C++ only):cad data you got

return value
ActiveX:cad data you got
C/C++: 1: success 0: failure

This function is used after you executed select().
This function gets selected CAD data you specified DXF group code. You can take all CAD data using this function. See some functions in [reference],too. This function is basic function and for specialist who is understanding DXF file format.
Refer to AutoCAD help, to know detail of DXF group code.
reference

get_select_double_data()
get_select_point()
get_select_line()
get_select_layer()
get_select_color()
get_select_linestyle()
get_select_arc()
get_select_circle()
get_select_polyline()
get_select_text()

Modification functions of selected CAD data
set_select_data()
set_select_layer()
set_select_color()
set_select_linestyle()
set_select_point()
set_select_polyline_vertex()
set_select_line()
set_select_arc()
set_select_circle()
set_select_text()
delete_select_data()
delete_select_data_item()
Updates modified CAD data to AutoCAD LT.
update_select_data()