Query the CAD layer with the given attributes.
Visual Basic |
---|
Public Sub QueryCadLayer( _ ByVal LayerIndex As Long, _ ByRef LayerName As String, _ ByRef LayerDescription As String, _ ByRef Frozen As Boolean, _ ByRef InUse As Boolean, _ ByRef Locked As Boolean, _ ByRef Plottable As Boolean, _ ByRef On As Boolean _ ) |
- LayerIndex
- A long value which represents the layer index.
- LayerName
- A string value which represents the layer name.
- LayerDescription
- A string value which represents the layer description.
- Frozen
- A boolean value to set to True to freeze the layer. Otherwise, False should be set.
- InUse
- A boolean value to set to True when the layer is in use. Otherwise, False should be set.
- Locked
- A boolean value to set to True to lock the given layer. Otherwise, False should be set.
- Plottable
- A boolean value to set to True to allow the given layer to be plottable. Otherwise, False should be set.
- On
- A boolean value to set to True to turn on the given layer. Otherwise, False should be set.
Note: Available in Professional Edition.