Password プロパティ(ActiveX)

暗号化パスワードを指定します。

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

構文と要素

VBA:

object.Password
object

タイプ: SecurityParams

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

プロパティの値

読み込み専用: いいえ

タイプ: 文字列

暗号化パスワード

注意

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

VBA:

Sub Example_Password()
    ' This example opens a password-protected file, closes it, and then opens another
    ' password-protected file.

    ThisDrawing.Application.Documents.Open "C:\MyDrawing.dwg", , "MYPASSWORD"
    'AutoCAD converts all passwords to uppercase before applying them

    ThisDrawing.Close

    ThisDrawing.Application.Documents.Open "C:\MyDrawing2.dwg", , "MYSECONDPASSWORD"
End Sub

Visual LISP:

Not available