StyleSheet プロパティ(ActiveX)

レイアウト、または印刷環境設定のスタイル シートを指定します。

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

構文と要素

VBA:

object.StyleSheet
object

タイプ: LayoutPlotConfiguration

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

プロパティの値

読み込み専用: いいえ

タイプ: 文字列

スタイル シートの名前。

注意

追加の注意はありません。

VBA:

Sub Example_StyleSheet()
    ' This example finds the name of the style sheet for the active layout
    
    Dim styleSheetName As String
    styleSheetName = ThisDrawing.ActiveLayout.StyleSheet
    
    If styleSheetName = "" Then
        MsgBox "There is no style sheet set for the active layout."
    Else
        MsgBox "The style sheet for the active layout is: " & styleSheetName
    End If
End Sub

Visual LISP:

(vl-load-com)
(defun c:Example_StyleSheet()
    ;; This example finds the name of the plot style for the active layout
    (setq acadObj (vlax-get-acad-object))
    (setq doc (vla-get-ActiveDocument acadObj))

    (setq styleSheetName (vla-get-StyleSheet (vla-get-ActiveLayout doc)))
    
    (if (= styleSheetName "")
        (alert "There is no style sheet set for the active layout.")
        (alert (strcat "The style sheet for the active layout is: " styleSheetName))
    )
)