Modifies color in selected CAD data LTCustomizer21 for AutoCAD LT reference manual
ActiveX
    Function set_select_color(ename As Integer, color As String) As Boolean
 
C/C++
 
    int WINAPI LTC_set_select_color(int ename,const wchar_t *color);
 
parameter
 
ename:index number of array that read by select(). Specifies a value in range of 0 - return value of select() 
-1.
color :color code
 return value
 
ActiveX: True: success. False: failure
 
C/C++: 1: success .0: failure
This function is equal to following code.
 
set_select_data(ename,62,color)