Autodesk.Revit.DB.Electrical.GroundConductorSizeSet
是一个表示 Revit 中接地导体尺寸集合的类。
构造函数 | 描述 |
---|---|
GroundConductorSizeSet() |
创建一个空的接地导体尺寸集合。 |
GroundConductorSizeSet(IEnumerable<int>) |
使用一组整数创建接地导体尺寸集合。 |
GroundConductorSizeSet(int, int, int, int) |
使用4个整数的值创建接地导体尺寸集合。 |
属性 | 描述 |
---|---|
Count |
返回接地导体尺寸集合的元素数量。 |
Item[int] |
按索引返回接地导体尺寸集合中的元素。 |
StandardSizes(IFormatProvider) |
返回一个数组,其中包含按 IEC 和 NEMA 标准的接地导体尺寸。如果未指定格式提供程序,则使用当前线程的区域性。 |
方法 | 描述 |
---|---|
Add(int) |
向接地导体尺寸集合中添加一个尺寸。 |
Clear() |
从接地导体尺寸集合中移除所有元素。 |
Contains(int) |
返回一个布尔值,该值指示接地导体尺寸集合中是否存在指定的尺寸。 |
CopyTo(int[], int) |
将接地导体尺寸集合的元素复制到一个一维数组中。 |
GetEnumerator() |
返回用于循环访问接地导体尺寸集合中的所有元素的枚举器。 |
以下示例展示了如何使用 GroundConductorSizeSet
类创建、添加和检索接地导体尺寸集合中的元素。
// 创建一个 GroundConductorSizeSet 对象
GroundConductorSizeSet sizeSet = new GroundConductorSizeSet();
// 向集合中添加元素
sizeSet.Add(8);
sizeSet.Add(6);
sizeSet.Add(2);
// 检索集合中的元素
if (sizeSet.Contains(8))
{
Console.WriteLine("The size set contains 8.");
}
else
{
Console.WriteLine("The size set does not contain 8.");
}
// 输出集合中的元素数量
Console.WriteLine("The size set contains {0} elements.", sizeSet.Count);
以上示例输出结果如下:
The size set contains 8.
The size set contains 3 elements.