Halasox
Civil/Environmental
- Jun 5, 2016
- 16
Hi all,
Have a basic code that puts all datums to layer 64, but I would like to set the first datum feature onto layer 62. What would I need to modify? Thanks
Have a basic code that puts all datums to layer 64, but I would like to set the first datum feature onto layer 62. What would I need to modify? Thanks
Code:
For Each obj As DisplayableObject In workpart.Datums
If Not obj.IsBlanked AndAlso workpart.Layers.GetState(obj.Layer) <> Layer.State.Hidden Then
objArray(0) = obj
workpart.Layers.MoveDisplayableObjects(Val(64), objArray)
End If
Next