Sets linestyle from selected CAD dataLTCustomizer21 for AutoCAD LT reference manual

ActiveX
Function set_select_linestyle(ename As Integer, linestyle As String) As Boolean
C/C++
int WINAPI LTC_set_select_linestyle(int ename,const wchar_t *linestyle);

parameter
ename:: index number of array. Specify until from 0 to return value of select() function - 1.
linestyle :line style name you change

return value
ActiveX: True: success. False:failure
C/C++: 1: success. 0:failure

Line style does not apply in all data types. If you use this function in data type which doesn't apply line style, action is indefinite.

This function is equal to below.
set_select_data(ename,6,linestyle)