muck Posted August 24, 2009 Posted August 24, 2009 The following code will get plot configurations for both model and paper space. Is there a way to get plot configurations for only model space? Then get plot configurations for only paper space. Code: Private Sub CommandButton1_Click() ComboBox1.Clear Dim P As AcadPlotConfiguration Dim PL As AcadPlotConfigurations Dim x As Integer Set PL = ThisDrawing.PlotConfigurations ComboBox1.Value = "Select PageSetup" For Each P In PL ComboBox1.AddItem (P.Name) MsgBox P.Name Next End Sub Thank you, Quote
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.