using FeMM.Grasshopper.DataTypes.MeCheck2;
using FeMM.Grasshopper.Helpers;
using Grasshopper.Kernel;
using System;
namespace FeMM.Grasshopper.Components.Parameters
{
public class CompositeSectionStiffenersParameter : GH_Param<GH_CompositeSectionStiffeners>
{
public CompositeSectionStiffenersParameter()
: base("Composite Stiffeners", "S",
"Defines stiffeners for a composite section",
CategoryNameConstants.CATEGORY_CHECKS, CategoryNameConstants.SUBCATEGORY_MECHECK2,
GH_ParamAccess.item)
{
}
public override Guid ComponentGuid => new("B43FA074-216E-4F87-BE1E-DA2086F4D9A1");
protected override System.Drawing.Bitmap Icon => null; // add a 24x24 icon if you want
public override GH_Exposure Exposure => GH_Exposure.hidden;
}
}