PostScriptPrologFile プロパティ(ActiveX)

acad.psf ファイルのカスタマイズされたプロローグ セクションの名前を指定します。

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

構文と要素

VBA:

object.PostScriptPrologFile
object

タイプ: PreferencesFiles

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

プロパティの値

読み込み専用: いいえ

タイプ: 文字列

PSOUT の処理を行う場合の acad.psf ファイルの PostScript プロローグ セクション名。

注意

プロローグ セクションは、出力結果をカスタマイズするために AutoCAD の PSOUT[PS 書き出し]コマンドとともに使用されます。詳細は、AutoCAD のマニュアルを参照してください。

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

VBA:

Sub Example_PostScriptPrologFile()
    ' This example returns the current setting of
    ' PostScriptPrologFile. It then changes the value, and finally
    ' it resets the value back to the original setting.
    
    Dim preferences As AcadPreferences
    Dim currPostScriptPrologFile As String
    Dim newPostScriptPrologFile As String
    
    Set preferences = ThisDrawing.Application.Preferences
    
    ' Retrieve the current PostScriptPrologFile value
    currPostScriptPrologFile = preferences.Files.PostScriptPrologFile
    If currPostScriptPrologFile = "" Then
        MsgBox "PostScriptPrologFile is not currently set.", vbInformation, "PostScriptPrologFile Example"
    Else
        MsgBox "The current value for PostScriptPrologFile is " & currPostScriptPrologFile, vbInformation, "PostScriptPrologFile Example"
    End If
    
    ' Change the value for PostScriptPrologFile
    newPostScriptPrologFile = "TestPostScriptPrologFile"
    preferences.Files.PostScriptPrologFile = newPostScriptPrologFile
    MsgBox "The new value for PostScriptPrologFile is " & newPostScriptPrologFile, vbInformation, "PostScriptPrologFile Example"
    
    ' Reset PostScriptPrologFile to its original value
    preferences.Files.PostScriptPrologFile = currPostScriptPrologFile
    If currPostScriptPrologFile = "" Then
        MsgBox "PostScriptPrologFile is reset to NULL.", vbInformation, "PostScriptPrologFile Example"
    Else
        MsgBox "The PostScriptPrologFile value is reset to " & currPostScriptPrologFile, vbInformation, "PostScriptPrologFile Example"
    End If
End Sub

Visual LISP:

(vl-load-com)
(defun c:Example_PostScriptPrologFile()
    ;; This example returns the current setting of
    ;; PostScriptPrologFile. It then changes the value, and finally
    ;; it resets the value back to the original setting.
    (setq acadObj (vlax-get-acad-object))
    (setq preferences (vla-get-Preferences acadObj))
    
    ;; Retrieve the current PostScriptPrologFile value
    (setq currPostScriptPrologFile (vla-get-PostScriptPrologFile (vla-get-Files preferences)))
    (if (= currPostScriptPrologFile "")
        (alert "PostScriptPrologFile is not currently set.")
        (alert (strcat "The current value for PostScriptPrologFile is " currPostScriptPrologFile))
    )
    
    ;; Change the value for PostScriptPrologFile
    (setq newPostScriptPrologFile "TestPostScriptPrologFile")
    (vla-put-PostScriptPrologFile (vla-get-Files preferences) newPostScriptPrologFile)
    (alert (strcat "The new value for PostScriptPrologFile is " newPostScriptPrologFile))
    
    ;; Reset PostScriptPrologFile to its original value
    (vla-put-PostScriptPrologFile (vla-get-Files preferences) currPostScriptPrologFile)
    (if (= currPostScriptPrologFile "")
        (alert "PostScriptPrologFile is reset to NULL.")
        (alert (strcat "The PostScriptPrologFile value is reset to " currPostScriptPrologFile))
    )
)