Message 1 of 2
Get ExtLinePoints from Dimension
Not applicable
01-18-2012
12:28 PM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
Hi I tried to get the ExtLinePoints from a Dimension with the following code but I coudn't find it. Any Idea how I can get it!
Dim objSelSet As AcadSelectionSet
Dim objDim As AcadDimension
Dim pnt As Variant
Set objSelSet = ThisDrawing.SelectionSets.Add("dime")
intType(0) = 0
varData(0) = "DIMENSION"
objSelSet.Select acSelectionSetAll, , , intType, varData
For Each objDim In objSelSet
pnt = objDim.TextPosition
Next
objSelSet.Delete
