Autodesk.Revit.DB.NumberSystemJustifyOption
是一个枚举类型,用于指定数字系统的对齐选项。
该枚举类型包含以下成员:
Left
:数字系统左对齐。Center
:数字系统居中对齐。Right
:数字系统右对齐。以下示例展示了如何设置数字系统的对齐选项为左对齐:
Document doc = commandData.Application.ActiveUIDocument.Document;
ElementId elementId = new ElementId(123);
Element element = doc.GetElement(elementId);
if (element is Dimension dimension)
{
NumberSystemOptions options = dimension.NumberSystemOptions;
options.JustifyOption = NumberSystemJustifyOption.Left;
dimension.NumberSystemOptions = options;
}
在上述示例中,我们获取了保存在Revit文档中元素ID为123的标注元素,并将其转换为 Dimension
对象。然后,我们获取了该标注元素的数字系统选项,并将其对齐选项设置为左对齐,最后将选项重新赋值给标注元素的数字系统选项属性。