Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Reorganized the parameters on the Ribbon. #1250

Merged
merged 1 commit into from
Dec 17, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ namespace RhinoInside.Revit.GH.Parameters
[ComponentVersion(introduced: "1.12")]
public class Annotation : GraphicalElement<Types.IGH_Annotation, ARDB.Element>
{
public override GH_Exposure Exposure => GH_Exposure.quinary | GH_Exposure.hidden;
public override GH_Exposure Exposure => GH_Exposure.senary | GH_Exposure.hidden;
public override Guid ComponentGuid => new Guid("35D2829E-1F8E-494D-8D93-A4D2A7351729");
protected override string IconTag => string.Empty;

Expand Down
4 changes: 2 additions & 2 deletions src/RhinoInside.Revit.GH/Parameters/Annotations/Dimension.cs
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ namespace RhinoInside.Revit.GH.Parameters
{
public class Dimension : GraphicalElement<Types.Dimension, ARDB.Dimension>
{
public override GH_Exposure Exposure => GH_Exposure.quinary | GH_Exposure.obscure;
public override GH_Exposure Exposure => GH_Exposure.senary;
public override Guid ComponentGuid => new Guid("BC546B0C-1BF0-48C6-AAA9-F4FD429DAD39");

public Dimension() : base
Expand Down Expand Up @@ -49,7 +49,7 @@ protected override void Menu_AppendPromptNew(ToolStripDropDown menu)

public class DimensionType : ElementType<Types.DimensionType, ARDB.DimensionType>
{
public override GH_Exposure Exposure => GH_Exposure.secondary | GH_Exposure.obscure;
public override GH_Exposure Exposure => GH_Exposure.senary | GH_Exposure.obscure;
public override Guid ComponentGuid => new Guid("1554AF4F-19C2-49E7-B836-28383AF7F035");

public DimensionType() : base
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ namespace RhinoInside.Revit.GH.Parameters
{
public class Revision : Element<Types.Revision, ARDB.Revision>
{
public override GH_Exposure Exposure => GH_Exposure.secondary | GH_Exposure.obscure;
public override GH_Exposure Exposure => GH_Exposure.senary | GH_Exposure.obscure;
public override Guid ComponentGuid => new Guid("82A7462C-67EC-43EB-A520-F35E2360DC43");

public Revision() : base
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ namespace RhinoInside.Revit.GH.Parameters
{
public class TextElement : GraphicalElement<Types.TextElement, ARDB.TextElement>
{
public override GH_Exposure Exposure => GH_Exposure.quinary | GH_Exposure.obscure;
public override GH_Exposure Exposure => GH_Exposure.senary;
public override Guid ComponentGuid => new Guid("E2435930-2F95-4277-BA10-B1E3A660F9DA");

public TextElement() : base
Expand Down
4 changes: 2 additions & 2 deletions src/RhinoInside.Revit.GH/Parameters/DatumPlane.cs
Original file line number Diff line number Diff line change
Expand Up @@ -279,7 +279,7 @@ private void ListBox_SelectedIndexChanged(object sender, EventArgs e)

public class ReferencePlane : GraphicalElement<Types.ReferencePlane, ARDB.ReferencePlane >
{
public override GH_Exposure Exposure => GH_Exposure.quinary | GH_Exposure.obscure;
public override GH_Exposure Exposure => GH_Exposure.tertiary | GH_Exposure.obscure;
public override Guid ComponentGuid => new Guid("D35EB2A7-E2B9-40D7-9592-CE049CC58CCA");

public ReferencePlane() : base("Reference Plane", "Reference Plane", "Contains a collection of Revit reference plane elements", "Params", "Revit") { }
Expand Down Expand Up @@ -366,7 +366,7 @@ private void ListBox_SelectedIndexChanged(object sender, EventArgs e)
[ComponentVersion(introduced: "1.27")]
public class ReferencePoint : GraphicalElement<Types.ReferencePoint, ARDB.ReferencePoint>
{
public override GH_Exposure Exposure => GH_Exposure.quinary | GH_Exposure.obscure;
public override GH_Exposure Exposure => GH_Exposure.tertiary | GH_Exposure.obscure;
public override Guid ComponentGuid => new Guid("5483B924-702C-4B87-8EE8-A0250A61C2E4");

public ReferencePoint() : base("Reference Point", "Reference Point", "Contains a collection of Revit reference point elements", "Params", "Revit") { }
Expand Down
8 changes: 4 additions & 4 deletions src/RhinoInside.Revit.GH/Parameters/GeometryObject.cs
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ protected void Menu_PromptPlural<T>(object sender, EventArgs e) where T : X

public class GeometryObject : GeometryObject<Types.IGH_GeometryObject>
{
public override GH_Exposure Exposure => GH_Exposure.quinary | GH_Exposure.hidden;
public override GH_Exposure Exposure => GH_Exposure.tertiary | GH_Exposure.hidden;
public override Guid ComponentGuid => new Guid("7A41402E-7B6C-4523-9B57-E8485713F461");
public GeometryObject() : base("Geometry", "Geometry", "Contains a collection of Revit geometry", "Params", "Revit") { }
protected override string IconTag => string.Empty;
Expand All @@ -104,7 +104,7 @@ protected override void Menu_AppendInternaliseData(ToolStripDropDown menu) { }
public class GeometryPoint : GeometryObject<Types.GeometryPoint>,
ARUI.Selection.ISelectionFilter
{
public override GH_Exposure Exposure => GH_Exposure.quinary;
public override GH_Exposure Exposure => GH_Exposure.tertiary;
public override Guid ComponentGuid => new Guid("BC1B160A-DC04-4139-AB7D-1AECBDE7FF88");
public GeometryPoint() : base("Point", "Point", "Contains a collection of Revit points", "Params", "Revit") { }

Expand Down Expand Up @@ -205,7 +205,7 @@ protected override GH_GetterResult Prompt_Singular(ref Types.GeometryPoint value
public class GeometryCurve : GeometryObject<Types.GeometryCurve>,
ARUI.Selection.ISelectionFilter
{
public override GH_Exposure Exposure => GH_Exposure.quinary;
public override GH_Exposure Exposure => GH_Exposure.tertiary;
public override Guid ComponentGuid => new Guid("B79FD0FD-63AE-4776-A0A7-6392A3A58B0D");
public GeometryCurve() : base("Curve", "Curve", "Contains a collection of Revit curves", "Params", "Revit") { }

Expand Down Expand Up @@ -266,7 +266,7 @@ protected override GH_GetterResult Prompt_Singular(ref Types.GeometryCurve value
public class GeometryFace : GeometryObject<Types.GeometryFace>,
ARUI.Selection.ISelectionFilter
{
public override GH_Exposure Exposure => GH_Exposure.quinary;
public override GH_Exposure Exposure => GH_Exposure.tertiary;
public override Guid ComponentGuid => new Guid("759700ED-BC79-4986-A6AB-84921A7C9293");
public GeometryFace() : base("Face", "Face", "Contains a collection of Revit faces", "Params", "Revit") { }

Expand Down
2 changes: 1 addition & 1 deletion src/RhinoInside.Revit.GH/Parameters/HostObject.cs
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ public HostObject() : base("Host", "Host", "Contains a collection of Revit host

public class HostObjectType : ElementType<Types.IGH_HostObjectType, ARDB.HostObjAttributes>
{
public override GH_Exposure Exposure => GH_Exposure.secondary | GH_Exposure.obscure;
public override GH_Exposure Exposure => GH_Exposure.primary | GH_Exposure.obscure;
public override Guid ComponentGuid => new Guid("708AB072-878E-41ED-9B8C-AAB0E1D85A53");

public HostObjectType() : base("Host Type", "HostType", "Contains a collection of Revit host types", "Params", "Revit Elements") { }
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ namespace RhinoInside.Revit.GH.Parameters
{
public class AppearanceAsset : Element<Types.AppearanceAssetElement, ARDB.AppearanceAssetElement>
{
public override GH_Exposure Exposure => GH_Exposure.quarternary | GH_Exposure.obscure;
public override GH_Exposure Exposure => GH_Exposure.septenary | GH_Exposure.obscure;
public override Guid ComponentGuid => new Guid("941b2ee3-5423-4fee-9df6-27c77fdb53c9");

public AppearanceAsset() : base
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ namespace RhinoInside.Revit.GH.Parameters
public class AssetPropertyDouble1DMap : Param<Types.AssetPropertyDouble1DMap>
{
public override Guid ComponentGuid => new Guid("49A94C44-26EC-4EE8-B9E7-37581968C3BF");
public override GH_Exposure Exposure => GH_Exposure.hidden;
public override GH_Exposure Exposure => GH_Exposure.septenary | GH_Exposure.hidden;
protected override string IconTag => "D1D";

public AssetPropertyDouble1DMap() : base
Expand All @@ -17,7 +17,7 @@ public AssetPropertyDouble1DMap() : base
nickname: "Asset Property Double 1D Map",
description: "Contains a collection of Revit 1D appearance asset properties",
category: "Params",
subcategory: "Revit"
subcategory: "Revit Elements"
)
{ }
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ namespace RhinoInside.Revit.GH.Parameters
public class AssetPropertyDouble4DMap : Param<Types.AssetPropertyDouble4DMap>
{
public override Guid ComponentGuid => new Guid("C2FC2E60-0336-465A-9FF0-1AFC4B65D10D");
public override GH_Exposure Exposure => GH_Exposure.hidden;
public override GH_Exposure Exposure => GH_Exposure.septenary | GH_Exposure.hidden;
protected override string IconTag => "D4D";

public AssetPropertyDouble4DMap() : base
Expand All @@ -17,7 +17,7 @@ public AssetPropertyDouble4DMap() : base
nickname: "Asset Property Double 4D Map",
description: "Contains a collection of Revit 4D appearance asset properties",
category: "Params",
subcategory: "Revit"
subcategory: "Revit Elements"
)
{ }
}
Expand Down
2 changes: 1 addition & 1 deletion src/RhinoInside.Revit.GH/Parameters/Materials/Material.cs
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ namespace RhinoInside.Revit.GH.Parameters
{
public class Material : Element<Types.Material, ARDB.Material>
{
public override GH_Exposure Exposure => GH_Exposure.quarternary;
public override GH_Exposure Exposure => GH_Exposure.septenary;
public override Guid ComponentGuid => new Guid("B18EF2CC-2E67-4A5E-9241-9010FB7D27CE");

public Material() : base
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ namespace RhinoInside.Revit.GH.Parameters
{
public class StructuralAsset : Element<Types.StructuralAssetElement, ARDB.PropertySetElement>
{
public override GH_Exposure Exposure => GH_Exposure.quarternary | GH_Exposure.obscure;
public override GH_Exposure Exposure => GH_Exposure.septenary | GH_Exposure.obscure;
public override Guid ComponentGuid => new Guid("dde6da63-87bc-4250-9455-5233bfad8683");

public StructuralAsset() : base
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ namespace RhinoInside.Revit.GH.Parameters
#if REVIT_2018
public class TextureData : Param<Types.TextureData>
{
public override GH_Exposure Exposure => GH_Exposure.quarternary | GH_Exposure.hidden;
public override GH_Exposure Exposure => GH_Exposure.septenary | GH_Exposure.hidden;
public override Guid ComponentGuid => new Guid("a7c7ecef-066d-4b39-b2e8-01b6d53adfeb");
protected override string IconTag => "T";

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ namespace RhinoInside.Revit.GH.Parameters
{
public class ThermalAsset : Element<Types.ThermalAssetElement, ARDB.PropertySetElement>
{
public override GH_Exposure Exposure => GH_Exposure.quarternary | GH_Exposure.obscure;
public override GH_Exposure Exposure => GH_Exposure.septenary | GH_Exposure.obscure;
public override Guid ComponentGuid => new Guid("b0a6689a-f2cd-4360-980c-d61a1f0c0453");

public ThermalAsset() : base
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,7 @@ private void ListBox_SelectedIndexChanged(object sender, EventArgs e)

public class GraphicsStyle : Element<Types.GraphicsStyle, ARDB.GraphicsStyle>
{
public override GH_Exposure Exposure => GH_Exposure.quarternary;
public override GH_Exposure Exposure => GH_Exposure.septenary;
public override Guid ComponentGuid => new Guid("833E6207-BA60-4C6B-AB8B-96FDA0F91822");

public GraphicsStyle() : base("Line Style", "Line Style", "Contains a collection of Revit line styles", "Params", "Revit Elements") { }
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ namespace RhinoInside.Revit.GH.Parameters
{
public class FillPatternElement : Element<Types.FillPatternElement, ARDB.FillPatternElement>
{
public override GH_Exposure Exposure => GH_Exposure.quarternary;
public override GH_Exposure Exposure => GH_Exposure.septenary;
public override Guid ComponentGuid => new Guid("EFDDB3D7-CF2A-4972-B1C4-29374BB89149");

public FillPatternElement() : base
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ namespace RhinoInside.Revit.GH.Parameters
{
public class LinePatternElement : Element<Types.LinePatternElement, ARDB.LinePatternElement>
{
public override GH_Exposure Exposure => GH_Exposure.quarternary;
public override GH_Exposure Exposure => GH_Exposure.septenary;
public override Guid ComponentGuid => new Guid("EB5AB657-AE01-42F0-BF98-071DA6D7A2D2");

public LinePatternElement() : base
Expand Down
2 changes: 1 addition & 1 deletion src/RhinoInside.Revit.GH/Parameters/SketchPlane.cs
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ namespace RhinoInside.Revit.GH.Parameters
public class SketchPlane : GraphicalElement<Types.SketchPlane, Autodesk.Revit.DB.SketchPlane>
{
public override Guid ComponentGuid => new Guid("93BF1F61-69AD-433F-A202-352C14E4CED8");
public override GH_Exposure Exposure => GH_Exposure.quinary;
public override GH_Exposure Exposure => GH_Exposure.tertiary;

public SketchPlane() : base("Work Plane", "Work Plane", "Contains a collection of Revit work plane elements", "Params", "Revit") { }
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,9 @@ namespace RhinoInside.Revit.GH.Parameters
[ComponentVersion(introduced: "1.16")]
public class AnalyticalElement : GraphicalElement<Types.AnalyticalElement, ARDB_AnalyticalElement>
{
public override GH_Exposure Exposure => GH_Exposure.primary | GH_Exposure.hidden;
public override GH_Exposure Exposure => GH_Exposure.quarternary;
public override Guid ComponentGuid => new Guid("CEC912FA-C0D3-47C2-A3A6-52A8B8EA4476");
protected override string IconTag => "AE";

public AnalyticalElement() : base("Analytical Element", "Analytical Element", "Contains a collection of Revit analytical elements", "Params", "Revit Elements") { }

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,9 @@ namespace RhinoInside.Revit.GH.Parameters
[ComponentVersion(introduced: "1.27")]
public class AnalyticalMember : GraphicalElement<Types.AnalyticalMember, ARDB_AnalyticalMember>
{
public override GH_Exposure Exposure => GH_Exposure.primary | GH_Exposure.hidden;
public override GH_Exposure Exposure => GH_Exposure.quarternary;
public override Guid ComponentGuid => new Guid("0A7B685C-98E9-4684-A441-54C7B9192FDC");
protected override string IconTag => "AM";

public AnalyticalMember() : base("Analytical Member", "Analytical Member", "Contains a collection of Revit analytical members", "Params", "Revit Elements") { }
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,9 @@ namespace RhinoInside.Revit.GH.Parameters
[ComponentVersion(introduced: "1.27")]
public class AnalyticalOpening : GraphicalElement<Types.AnalyticalOpening, ARDB_AnalyticalOpening>
{
public override GH_Exposure Exposure => GH_Exposure.primary | GH_Exposure.hidden;
public override GH_Exposure Exposure => GH_Exposure.quarternary;
public override Guid ComponentGuid => new Guid("9DAD352A-2E88-4375-BB02-802C8990C9D6");
protected override string IconTag => "AO";

public AnalyticalOpening() : base("Analytical Opening", "Analytical Opening", "Contains a collection of Revit analytical openings", "Params", "Revit Elements") { }
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,9 @@ namespace RhinoInside.Revit.GH.Parameters
[ComponentVersion(introduced: "1.27")]
public class AnalyticalPanel : GraphicalElement<Types.AnalyticalPanel, ARDB_AnalyticalPanel>
{
public override GH_Exposure Exposure => GH_Exposure.primary | GH_Exposure.hidden;
public override GH_Exposure Exposure => GH_Exposure.quarternary;
public override Guid ComponentGuid => new Guid("04B8EAC3-E81F-4D14-A65B-EB867EF2577E");
protected override string IconTag => "AP";

public AnalyticalPanel() : base("Analytical Panel", "Analytical Panel", "Contains a collection of Revit analytical panels", "Params", "Revit Elements") { }
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ namespace RhinoInside.Revit.GH.Parameters
[ComponentVersion(introduced: "1.14")]
public class BeamSystem : GraphicalElement<Types.BeamSystem, ARDB.BeamSystem>
{
public override GH_Exposure Exposure => GH_Exposure.primary | GH_Exposure.obscure;
public override GH_Exposure Exposure => GH_Exposure.secondary | GH_Exposure.obscure;
public override Guid ComponentGuid => new Guid("45CD3655-4658-4C35-99FB-9975A1128DDF");

public BeamSystem() : base("Beam System", "Beam System", "Contains a collection of Revit Beam System elements", "Params", "Revit Elements") { }
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ namespace RhinoInside.Revit.GH.Parameters
[ComponentVersion(introduced: "1.27")]
public class BoundaryConditions : GraphicalElement<Types.BoundaryConditions, ARDB.Structure.BoundaryConditions>
{
public override GH_Exposure Exposure => GH_Exposure.primary | GH_Exposure.obscure;
public override GH_Exposure Exposure => GH_Exposure.quarternary | GH_Exposure.obscure;
public override Guid ComponentGuid => new Guid("DEE191F4-9D73-46C7-9BD0-EBBBD5B8D4A6");

public BoundaryConditions() : base("Boundary Conditions", "Boundary Conditions", "Contains a collection of Revit Boundary Conditions", "Params", "Revit Elements") { }
Expand Down
2 changes: 1 addition & 1 deletion src/RhinoInside.Revit.GH/Parameters/Structure/Truss.cs
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ namespace RhinoInside.Revit.GH.Parameters
[ComponentVersion(introduced: "1.14")]
public class Truss : GraphicalElement<Types.Truss, ARDB.Structure.Truss>
{
public override GH_Exposure Exposure => GH_Exposure.primary | GH_Exposure.obscure;
public override GH_Exposure Exposure => GH_Exposure.secondary | GH_Exposure.obscure;
public override Guid ComponentGuid => new Guid("A3313847-9ACE-483D-BED8-5FA7CA2DE103");

public Truss() : base("Truss", "Truss", "Contains a collection of Revit Truss elements", "Params", "Revit Elements") { }
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ namespace RhinoInside.Revit.GH.Parameters
[ComponentVersion(introduced: "1.14")]
public class WallFoundation : GraphicalElement<Types.WallFoundation, ARDB.WallFoundation>
{
public override GH_Exposure Exposure => GH_Exposure.primary | GH_Exposure.obscure;
public override GH_Exposure Exposure => GH_Exposure.secondary | GH_Exposure.obscure;
public override Guid ComponentGuid => new Guid("CA456FEA-7C01-452E-BB76-73D749EF5B49");

public WallFoundation() : base("Wall Foundation", "Wall Foundation", "Contains a collection of Revit wall foundation elements", "Params", "Revit Elements") { }
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ namespace RhinoInside.Revit.GH.Parameters
[ComponentVersion(introduced: "1.7")]
public class AreaElement : GraphicalElement<Types.AreaElement, ARDB.Area>
{
public override GH_Exposure Exposure => GH_Exposure.quinary | GH_Exposure.obscure;
public override GH_Exposure Exposure => GH_Exposure.senary;
public override Guid ComponentGuid => new Guid("66AAAE96-BA85-4DC7-A188-AC213FAD3176");

public AreaElement() : base
Expand Down
2 changes: 1 addition & 1 deletion src/RhinoInside.Revit.GH/Parameters/Topology/AreaScheme.cs
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ namespace RhinoInside.Revit.GH.Parameters
[ComponentVersion(introduced: "1.14")]
public class AreaScheme : Element<Types.AreaScheme, ARDB.AreaScheme>
{
public override GH_Exposure Exposure => GH_Exposure.quinary | GH_Exposure.obscure;
public override GH_Exposure Exposure => GH_Exposure.senary | GH_Exposure.obscure;
public override Guid ComponentGuid => new Guid("B042539F-21FB-4BB3-BCA8-F93708CD140E");

public AreaScheme() : base
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ namespace RhinoInside.Revit.GH.Parameters
[ComponentVersion(introduced: "1.7")]
public class RoomElement : GraphicalElement<Types.RoomElement, ARDB.Architecture.Room>
{
public override GH_Exposure Exposure => GH_Exposure.quinary | GH_Exposure.obscure;
public override GH_Exposure Exposure => GH_Exposure.senary;
public override Guid ComponentGuid => new Guid("1E6825B6-4A7A-44EA-BC70-A9A110963E17");

public RoomElement() : base
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ namespace RhinoInside.Revit.GH.Parameters
[ComponentVersion(introduced: "1.7")]
public class SpaceElement : GraphicalElement<Types.SpaceElement, ARDB.Mechanical.Space>
{
public override GH_Exposure Exposure => GH_Exposure.quinary | GH_Exposure.obscure;
public override GH_Exposure Exposure => GH_Exposure.senary | GH_Exposure.obscure;
public override Guid ComponentGuid => new Guid("30473B1D-6226-45CE-90A7-5F8E1E1DCBE3");

public SpaceElement() : base
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ namespace RhinoInside.Revit.GH.Parameters
{
public class SpatialElement : GraphicalElement<Types.SpatialElement, ARDB.SpatialElement>
{
public override GH_Exposure Exposure => GH_Exposure.quinary | GH_Exposure.hidden;
public override GH_Exposure Exposure => GH_Exposure.senary | GH_Exposure.hidden;
public override Guid ComponentGuid => new Guid("8774ACF3-7B77-474F-B12B-03D4CBBC3C15");
protected override string IconTag => string.Empty;

Expand Down
Loading