Message 1 of 3
Customizing a "DimensionStyle"
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
Hello Forums,
I am currently working with "AlignedDimension", and I am facing a problem. Every time I create an instance of "AlignedDimension".
For example when I create an instance of "AlignedDimension," I need to modify the style of the arrowheads at the instance. The following code excerpt demonstrates this operation :
AlignedDimension dim = new AlignedDimension(
new Point3d(0,0,0),new Point3d(3, 5, 0),
new Point3d(1.5, 1.5, 0),
"Title",
_doc.Database.DimStyleTableId);
dim.Dimblk1 = _ArrowStyleID1;
dim.Dimblk2 = _ArrowStyleID2;
_ArrowStyleID1 and _ArrowStyleID2 are Object IDs pointing to the values of DIMBLK1 and DIMBLK2 (retrieved using GetSystemVariable)
My question : Is it possible to modify these properties once at the "DimensionStyle" instead of making changes at the instance repeatedly ?
Thank You.