Edit Hatch Boundaries
From AutoCAD ActiveX
You can append or insert loops into the hatch boundaries. Associative hatches are updated to match any changes made to their boundaries. Non-associative hatches are not updated.
To edit a hatch boundary, use one of the following methods:
Append an inner loop to a hatch
This example creates an associative hatch. It then creates a circle and appends the circle as an inner loop to the hatch.
Sub Ch4_AppendInnerLoopToHatch()
Dim hatchObj As AcadHatch
Dim patternName As String
Dim PatternType As Long
Dim bAssociativity As Boolean
' Define and create the hatchpatternName = "ANSI31"PatternType = 0bAssociativity = TrueSet hatchObj = ThisDrawing.ModelSpace. _AddHatch(PatternType, patternName, bAssociativity)' Create the outer loop for the hatch.Dim outerLoop(0 To 1) As AcadEntityDim center(0 To 2) As DoubleDim radius As DoubleDim startAngle As DoubleDim endAngle As Doublecenter(0) = 5: center(1) = 3: center(2) = 0radius = 3startAngle = 0endAngle = 3.141592Set outerLoop(0) = ThisDrawing.ModelSpace. _AddArc(center, radius, startAngle, endAngle)Set outerLoop(1) = ThisDrawing.ModelSpace. _AddLine(outerLoop(0).startPoint, outerLoop(0).endPoint)' Append the outer loop to the hatch objecthatchObj.AppendOuterLoop (outerLoop)' Create a circle as the inner loop for the hatch.Dim innerLoop(0) As AcadEntitycenter(0) = 5: center(1) = 4.5: center(2) = 0radius = 1Set innerLoop(0) = ThisDrawing.ModelSpace. _AddCircle(center, radius)' Append the circle as an inner loop to the hatchhatchObj.AppendInnerLoop (innerLoop)' Evaluate and display the hatchhatchObj.EvaluateThisDrawing.Regen TrueEnd Sub