Autodesk.Revit.UI.SketchGalleryOptions 是一个表示 Revit 通过 UI 插入草图库的选项的类。
SketchGalleryPath: string
IsReadOnly: bool
SketchGalleryOptions(string sketchGalleryPath, bool readOnly)
GetType(): Type
Equals(object obj): bool
GetHashCode(): int
ToString(): string
using Autodesk.Revit.UI;
using System;
namespace RevitAddin1
{
class SketchGalleryOptionsTest
{
public void Test()
{
SketchGalleryOptions options = new SketchGalleryOptions(@"C:\Users\user\Documents\Revit\Sketch Gallery", true);
Console.WriteLine(options.SketchGalleryPath);
Console.WriteLine(options.IsReadOnly);
}
}
}
输出:
C:\Users\user\Documents\Revit\Sketch Gallery
True
ArgumentNullException: 参数 "sketchGalleryPath" 为 null。
ArgumentException: 参数 "sketchGalleryPath" 无效。
可从 Revit 2020 开始使用。