This .NET class wraps the AcDbDimension ObjectARX class.
The Dimension class is the base class for the classes that represent all the dimension entity types within AutoCAD. The appearance of dimensions is controlled by dimension variable settings and dimension styles.
Autodesk.AutoCAD.DatabaseServices.DBObject Autodesk.AutoCAD.DatabaseServices.Entity Autodesk.AutoCAD.DatabaseServices.Dimension Autodesk.AutoCAD.DatabaseServices.AlignedDimension Autodesk.AutoCAD.DatabaseServices.ArcDimension Autodesk.AutoCAD.DatabaseServices.DiametricDimension Autodesk.AutoCAD.DatabaseServices.LineAngularDimension2 Autodesk.AutoCAD.DatabaseServices.Point3AngularDimension Autodesk.AutoCAD.DatabaseServices.RadialDimension Autodesk.AutoCAD.DatabaseServices.RadialDimensionLarge Autodesk.AutoCAD.DatabaseServices.RotatedDimension
Public abstract Class Dimension Inherits Entity
public abstract class Dimension : Entity;
Although this class has a constructor, it is intended to be used as a base class -- no objects of this class should be created. An object instantiated directly from Dimension cannot be added to the database. Only objects instantiated from a class derived from Dimension can be added to the database. If a dimension object from a derived class wishes to call Dimension.WorldDraw(), it must do so before any calls are made to any of the WorldGeometry or ViewportGeometry geometry creation methods (including Mesh() or Shell()). This is because the parent dimensions WorldDraw() method makes a call to SubEntityTraits.SetSelectionMarker().
If you do not set the dimension text automatically, the text becomes the measured value of the dimension. Setting the text using the Dimension.DimensionText property will override the default value. You can revert to the default value by setting the text to "" (an empty string).
Modifying a dimension in a noncurrent database will cause its DimBlockId to be set to NULL. This ensures that the next time the database is loaded as the current drawing, a new dimension block will be created, and the old one will be purged. This is necessary because dimension blocks in noncurrent databases cannot be created or modified. A dimension opened for write in a noncurrent database will have its DimBlockId set to NULL during close. This may generate problems for applications.
This behavior can be overridden. Calling RecordGraphicsModified(false) before closing the dimension will prevent the DimBlockId from being set to NULL. Although this will also reset the graphics modified bit, it should cause no other harmful side effects because the operation is on a noncurrent database. The result of overriding this behavior will be as follows:
This class supports Dimension Style Overrides, which means that it has a dimension style and that it honors certain dimension variables.
This class overrides Entity.SubSetDatabaseDefaults() to set the object's dimension style (dimensionStyle) to the current style for the database. Typically objects of this class are initialized with a call to SetDatabaseDefaults() followed by a call to SetDimstyleData() using data obtained by a call to Database.GetDimstyleData().
DBObject, BlockTableRecord
Comments? |