Delete Layer States
 
 
 

The DeleteLayerState method removes a saved layer state from a drawing. The following code deletes the layer state saved under the name ColorLinetype.

VB.NET

Imports Autodesk.AutoCAD.Runtime
Imports Autodesk.AutoCAD.ApplicationServices
Imports Autodesk.AutoCAD.DatabaseServices
 
<CommandMethod("RemoveLayerState")> _
Public Sub RemoveLayerState()
  '' Get the current document
  Dim acDoc As Document = Application.DocumentManager.MdiActiveDocument
 
  Dim acLyrStMan As LayerStateManager
  acLyrStMan = acDoc.Database.LayerStateManager
 
  Dim sLyrStName As String = "ColorLinetype"
 
  If acLyrStMan.HasLayerState(sLyrStName) = True Then
      acLyrStMan.DeleteLayerState(sLyrStName)
  End If
End Sub

C#

using Autodesk.AutoCAD.Runtime;
using Autodesk.AutoCAD.ApplicationServices;
using Autodesk.AutoCAD.DatabaseServices;
 
[CommandMethod("RemoveLayerState")]
public static void RemoveLayerState()
{
  // Get the current document
  Document acDoc = Application.DocumentManager.MdiActiveDocument;
 
  LayerStateManager acLyrStMan;
  acLyrStMan = acDoc.Database.LayerStateManager;
 
  string sLyrStName = "ColorLinetype";
 
  if (acLyrStMan.HasLayerState(sLyrStName) == true)
  {
      acLyrStMan.DeleteLayerState(sLyrStName);
  }
}
VBA/ActiveX Code Reference