Verify プロパティ(ActiveX)

属性を確認するように設定されているかどうかを指定します。

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

構文と要素

VBA:

object.Verify
object

タイプ: Attribute

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

プロパティの値

読み込み専用: いいえ

タイプ: ブール型

注意

確認するよう設定されている属性は、ブロック挿入時に属性値が正しいことの確認をユーザに求めます。

属性は、4 つのオプション モード(一定、プリセット、非表示、確認)の 1 つとしてのみ存在できます。システム変数 AFLAGS に現在のモードの設定が格納されます。Mode プロパティを使用して現在のモードを取得できます。

VBA:

Sub Example_Verify()
    ' This example creates an attribute definition in model space.
    ' It then sets the definition to be verify, and queries the mode.
    
    Dim attributeObj As AcadAttribute
    Dim height As Double
    Dim mode As Long
    Dim prompt As String
    Dim insertionPoint(0 To 2) As Double
    Dim tag As String
    Dim value As String
    
    ' Define the attribute definition
    height = 1#
    mode = acAttributeModeVerify
    prompt = "New Prompt"
    insertionPoint(0) = 5#: insertionPoint(1) = 5#: insertionPoint(2) = 0
    tag = "New_Tag"
    value = "New Value"
    
    ' Create the attribute definition object in model space
    Set attributeObj = ThisDrawing.ModelSpace.AddAttribute(height, mode, prompt, insertionPoint, tag, value)
    ZoomAll
    
    ' Change the mode to be verify
    attributeObj.mode = acAttributeModeVerify
    attributeObj.Update
    
    ' Check to see if the attribute is set to verify
    MsgBox (IIf(attributeObj.Verify, "The attribute is set to verify", "The attribute is not set to verify"))
End Sub

Visual LISP:

(vl-load-com)
(defun c:Example_Verify()
    ;; This example creates an attribute definition in model space.
    ;; It then sets the definition to be verify, and queries the mode.
    (setq acadObj (vlax-get-acad-object))
    (setq doc (vla-get-ActiveDocument acadObj))
    
    ;; Define the attribute definition
    (setq insertionPoint (vlax-3d-point 5 5 0)
          attHeight 1
          attMode acAttributeModeVerify
          attPrompt "New Prompt"
          attTag "New_Tag"
          attValue "New Value")
    
    ;; Create the attribute definition object in model space
    (setq modelSpace (vla-get-ModelSpace doc))
    (setq attributeObj (vla-AddAttribute modelSpace attHeight attMode attPrompt insertionPoint attTag attValue))
    (vla-ZoomAll acadObj)
    
    ;; Change the mode to be verify
    (vla-put-Mode attributeObj acAttributeModeVerify)
    (vla-Update attributeObj)
    
    ;; Check to see if the attribute is set to verify
    (alert (if (= (vla-get-Verify attributeObj) :vlax-true) "The attribute is set to verify" "The attribute is not set to verify"))
)