Autodesk.Revit.DB.ExportLineweightKey
Autodesk.Revit.DB.ExportLineweightKey类定义了一个表示导出图元线条宽度的枚举值。
枚举值
该枚举中包含了一组预定义的整数值,用来表示导出的线条宽度。
- ByEntity:线条宽度根据实体自动计算。
- Hairline:0.001英寸。
- Width005:0.005英寸。
- Width009:0.009英寸。
- Width0135:0.0135英寸。
- Width020:0.020英寸。
- Width030:0.030英寸。
- Width040:0.040英寸。
- Width050:0.050英寸。
- Width060:0.060英寸。
- Width070:0.070英寸。
- Width080:0.080英寸。
- Width090:0.090英寸。
- Width100:0.100英寸。
- Width105:0.105英寸。
- Width120:0.120英寸。
- Width140:0.140英寸。
- Width150:0.150英寸。
- Width175:0.175英寸。
- Width200:0.200英寸。
- Width250:0.250英寸。
- Width300:0.300英寸。
- Width400:0.400英寸。
- Width500:0.500英寸。
- Custom:自定义的线条宽度。
示例
以下示例展示了如何创建一个ExportLineweightKey对象,并将该对象用于导出以下几种类型的线条:
ExportLineweightKey lwKey = ExportLineweightKey.Width060;
ElementId categoryId = new ElementId(BuiltInCategory.OST_Lines);
ExportLineweightMap lwMap = new ExportLineweightMap();
lwMap.Add(lineCategoryId, lwKey);
dwgExportOptions.LineweightMap = lwMap;
参考文献
- Autodesk.Revit.DB.ExportLineweightKey Class. Autodesk Revit API Documentation. https://www.revitapidocs.com/2020/5b5a3b5e-ca46-7505-d8a4-b45590bf9ca9.htm. Accessed July 26, 2021.