Evaluate 方法 (ActiveX)
评估给定的填充或引线。 支持的平台:仅限 Windows 返回值 (RetVal)无返回值。 言论引线:评估引线与其关联注释的关系,并在必要时更新引线几何。 剖面线:使用指定的剖面图案评估对象的剖面线或实体填充。对于常规填充图案,此方法在图案定义线和填充边界曲线之间执行交点计算以形成填充线。对于实体填充填充图案,此方法对填充区域进行三角测量,并用给定颜色填充三角形网格。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 可视化 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) ) |
|Archiver|CAD开发者社区 ( 苏ICP备2022047690号-1 苏公网安备32011402011833)
GMT+8, 2024-12-15 13:11
Powered by Discuz! X3.4
Copyright © 2001-2021, Tencent Cloud.