DefaultPlotStyleForLayer プロパティ(ActiveX)

新しい図面、または旧リリースのAutoCADで作成され AutoCAD 2000 または後続のAutoCAD の形式で保存されていない図面の、画層 0 の既定の印刷スタイルを指定します。

サポートされているプラットフォーム: Windows のみ

構文と要素

VBA:

object.DefaultPlotStyleForLayer
object

タイプ: PreferencesOutput

このプロパティが適用されるオブジェクト。

プロパティの値

読み込み専用: いいえ

タイプ: 文字列

既定値 "Normal"、および現在ロードされている印刷スタイル テーブルで定義されているすべての印刷スタイルを入力できます。

注意

このプロパティの初期値は "Normal" です。

このプロパティは PlotPolicyacPolicyNamed に設定されている場合にのみ使用できます。

DefaultPlotStyleTable プロパティを使用すると現在の印刷スタイルが分かります。

注: このプロパティの値は、システム変数 DEFLPLSTYLE に格納されます。

VBA:

Sub Example_DefaultPlotStyleForLayer()
    ' This example reads and modifies the preference value that controls
    ' the default plot style assigned to layers.
    ' When finished, this example resets the preference value back to
    ' its original value.
    
    Dim ACADPref As AcadPreferencesOutput
    Dim originalPolicyValue As Variant, originalValue As Variant, _
        originalPlotStyleTableValue As Variant, newValue As Variant
    
    ' Get the output preferences object
    Set ACADPref = ThisDrawing.Application.preferences.Output
    
    ' Set the default plot style to named plot styles
    originalPolicyValue = ACADPref.PlotPolicy
    ACADPref.PlotPolicy = acPolicyNamed
    
    ' Read and display the original value
    originalValue = ACADPref.DefaultPlotStyleForLayer
    MsgBox "The DefaultPlotStyleForLayer preference is: " & originalValue

    originalPlotStyleTableValue = ACADPref.DefaultPlotStyleTable
    ACADPref.DefaultPlotStyleTable = "acad.stb"

    ' Toggle and display the DefaultPlotStyleForLayer preference
    If ACADPref.DefaultPlotStyleForLayer = "Style 1" Then
        ACADPref.DefaultPlotStyleForLayer = "Normal"
    Else
        ACADPref.DefaultPlotStyleForLayer = "Style 1"
    End If

    newValue = ACADPref.DefaultPlotStyleForLayer
    MsgBox "The DefaultPlotStyleForLayer preference has been set to: " & newValue

    ' Reset the preference back to its original value
    '
    ' * Note: Comment out this last section to leave the change to
    '         this preference in effect
    ACADPref.DefaultPlotStyleForLayer = originalValue
    MsgBox "The DefaultPlotStyleForLayer preference was reset back to: " & originalValue
    
    ' Restore the original plot style
    ACADPref.PlotPolicy = originalPolicyValue
    ACADPref.DefaultPlotStyleTable = originalPlotStyleTableValue
End Sub

Visual LISP:

(vl-load-com)
(defun c:Example_DefaultPlotStyleForLayer()
    ;; This example reads and modifies the preference value that controls
    ;; the default plot style assigned to layers.
    ;; When finished, this example resets the preference value back to
    ;; its original value.
    (setq acadObj (vlax-get-acad-object))
    (setq preferences (vla-get-Preferences acadObj))

    ;; Get the output preferences object
    (setq ACADPref (vla-get-Output preferences))

    ;; Set the default plot style to named plot styles
    (setq originalPolicyValue (vla-get-PlotPolicy ACADPref))
    (vla-put-PlotPolicy ACADPref acPolicyNamed)

    (setq originalPlotStyleTableValue (vla-get-DefaultPlotStyleTable ACADPref))
    (vla-put-DefaultPlotStyleTable ACADPref "acad.stb")
  
    ;; Read and display the original value
    (setq originalValue (vla-get-DefaultPlotStyleForLayer ACADPref))
    (alert (strcat "The DefaultPlotStyleForLayer preference is: " originalValue))

    ;; Toggle and display the DefaultPlotStyleForLayer preference
    (if (= (vla-get-DefaultPlotStyleForLayer ACADPref) "Style 1")
        (vla-put-DefaultPlotStyleForLayer ACADPref "Normal")
        (vla-put-DefaultPlotStyleForLayer ACADPref "Style 1")
    )

    (setq newValue (vla-get-DefaultPlotStyleForLayer ACADPref))
    (alert (strcat "The DefaultPlotStyleForLayer preference has been set to: " newValue))

    ;; Reset the preference back to its original value
    ;;
    ;; * Note: Comment out this last section to leave the change to
    ;;         this preference in effect
    (vla-put-DefaultPlotStyleForLayer ACADPref originalValue)
    (alert (strcat "The DefaultPlotStyleForLayer preference was reset back to: " originalValue))

    ;; Restore the original plot style
    (vla-put-PlotPolicy ACADPref originalPolicyValue)
    (vla-put-DefaultPlotStyleTable ACADPref originalPlotStyleTableValue)
)