VBA - autoCAD

Fermé
la pioche - 25 mars 2009 à 16:45
 la pioche - 25 mars 2009 à 18:11
Bonjour a tous et a toute,
Voila je suis en train de créer un programme qui dessine des lignes fonction de cellule excel
mon problème est que ces lignes se creer automatiquement dans le calque 0 sous autocad, j'aimerais savoir comment on peut créer un calque par programmation VBA et ensuite dessiner mes lignes dedans
merci

1 réponse

Sub Example_Layer()
' This example creates a new layer named "ABC" (colored blue).
' It then creates a circle and assigns it to layer "ABC"

' Create new layer
Dim layerObj As AcadLayer
Set layerObj = ThisDrawing.Layers.Add("ABC")
Dim color As AcadAcCmColor
Set color = AcadApplication.GetInterfaceObject("AutoCAD.AcCmColor.16")
Call color.SetRGB(80, 100, 244)
layerObj.TrueColor = color

' Create Circle
Dim circleObj As AcadCircle
Dim center(0 To 2) As Double
Dim radius As Double
center(0) = 3: center(1) = 3: center(2) = 0
radius = 1.5
Set circleObj = ThisDrawing.ModelSpace.AddCircle(center, radius)
ZoomAll
MsgBox "The circle has been created on layer " & circleObj.Layer, , "Layer Example"

' Set the layer of new circle to "ABC"
circleObj.Layer = "ABC"

' Refresh view
ThisDrawing.Regen (True)
MsgBox "The circle is now on layer " & circleObj.Layer, , "Layer Example"

End Sub


cette procédure ne marche pas cela me met une erreur au niveau de "this drawing"
1