Autodesk.Revit.DB.Infrastructure.AlignmentStationLabel
是Revit
平台中的一个类,用于表示路线方向标志的标签对象。
该类具有以下属性:
Name
:获取或设置路线方向标志的名称。Station
:获取或设置路线方向标志的位置。DirectionType
:获取或设置路线方向标志的方向类型。该类支持以下方法:
AlignmentStationLabel
:初始化一个新的AlignmentStationLabel
对象。Dispose
:释放该AlignmentStationLabel
对象。以下是使用AlignmentStationLabel
创建一个路线方向标志的示例代码:
// 创建一个路线方向标志
AlignmentStationLabel label = new AlignmentStationLabel();
// 设置标签的名称和位置
label.Name = "交叉口";
label.Station = 100.00;
// 设置标签的方向类型为左侧
label.DirectionType = Autodesk.Revit.DB.Infrastructure.AlignmentStationDirectionType.Left;
// 在Revit显示该路线方向标志
doc.Create.NewAlignmentStationLabel(label);
Autodesk.Revit.DB.Infrastructure.AlignmentStationLabel
是Revit
平台中一个用于表示路线方向标志的标签对象,它具有名称、位置和方向类型等属性,可以通过Create.NewAlignmentStationLabel
方法在Revit
中显示。