指定されたハッチングまたは引出線を評価します。
サポートされているプラットフォーム: Windows のみ
戻り値はありません。
Leader: 引出線とそれに関連付けられた注釈との関係を評価し、必要に応じて引出線ジオメトリを更新します。
Hatch: 指定されたハッチング パターンを使用して、Hatch オブジェクトのハッチング線分または塗り潰しを評価します。通常のハッチング パターンの場合、このメソッドはハッチング パターンを定義する線分とハッチング境界の曲線との交点を計算し、ハッチング線分を形成します。塗り潰しハッチング パターンの場合、このメソッドはハッチング リージョンを三角形に分割し、指定された色で三角形のメッシュを塗り潰します。
VBA:
Sub Example_Evaluate() ' This example creates an associative hatch in model space. ' It uses the Evaluate method to calculate the hatch ' lines for the given boundary. Dim hatchObj As AcadHatch Dim patternName As String Dim PatternType As Long Dim bAssociativity As Boolean ' Define the hatch patternName = "ANSI31" PatternType = 0 bAssociativity = True ' Create the associative Hatch object in model space Set hatchObj = ThisDrawing.ModelSpace.AddHatch(PatternType, patternName, bAssociativity) ' Create the outer boundary for the hatch. (a circle) Dim outerLoop(0 To 0) As AcadEntity Dim center(0 To 2) As Double Dim radius As Double center(0) = 3: center(1) = 3: center(2) = 0 radius = 1 Set outerLoop(0) = ThisDrawing.ModelSpace.AddCircle(center, radius) ' Append the outerboundary to the hatch object, and display the hatch hatchObj.AppendOuterLoop (outerLoop) hatchObj.Evaluate ThisDrawing.Regen True End Sub
Visual LISP:
(vl-load-com) (defun c:Example_Evaluate() ;; This example creates an associative hatch in model space. ;; It uses the Evaluate method to calculate the hatch ;; lines for the given boundary. (setq acadObj (vlax-get-acad-object)) (setq doc (vla-get-ActiveDocument acadObj)) ;; Define the hatch (setq patternName "ANSI31" patternType acHatchPatternTypePreDefined bAssociativity :vlax-true) ;; Create the associative Hatch object in model space (setq modelSpace (vla-get-ModelSpace doc)) (setq hatchObj (vla-AddHatch modelSpace patternType patternName bAssociativity acHatchObject)) ;; Create the outer boundary for the hatch. (a circle) (setq center (vlax-3d-point 3 3 0) radius 1) (setq outerLoop (vlax-make-safearray vlax-vbObject '(0 . 0))) (vlax-safearray-put-element outerLoop 0 (vla-AddCircle modelSpace center radius)) ;; Append the outerboundary to the hatch object, and display the hatch (vla-AppendOuterLoop hatchObj outerLoop) (vla-Evaluate hatchObj) (vla-Regen doc :vlax-true) )