Returns or modifies the linetype source of an object. The linetype used to display objects is specified in one of three ways:
Linetype by layer. The object's layer determines the object's linetype.
Linetype by object. The object's linetype is set by the object itself.
Linetype by parent. The object's parent determines the object's linetype. Objects with parents, such as objects in instance references, can use this option.
Rhino.ObjectLinetypeSource (strObject [, intSource])
Rhino.ObjectLinetypeSource (arrObjects, intSource)
|
strObject |
Required. String. The identifier of the object. | ||||||
|
arrObjects |
Required. Array. An array of strings identifying the objects to modify. | ||||||
|
intSource |
Optional. Number. The new linetype source. If omitted, the current linetype source is returned. Note, if arrObjects is specified, intSource is required.
|
|
Number |
If a linetype source is not specified, the current linetype source if successful. |
|
Number |
If a linetype source is specified, the previous linetype source if successful. |
|
Number |
If arrObjects is specified, then the number of objects modified if successful. |
|
Null |
If not successful, or on error. |
Dim arrObjects, strObject, lngColor
arrObjects = Rhino.GetObjects("Select objects to reset linetype source")
If IsArray(arrObjects) Then
For Each strObject In arrObjects
Rhino.ObjectLinetypeSource strObject, 0
Next
End If