C# Class Revit.SDK.Samples.AutoParameter.CS.FamilyParam

record the data of a parameter: its name, its group, etc
Show file Open project: AMEE/revit Class Usage Examples

Public Methods

Method Description
FamilyParam ( string name, BuiltInParameterGroup group, ParameterType type, bool isInstance, int line ) : System

constructor which exposes for invoking

Private Methods

Method Description
FamilyParam ( ) : System

default constructor, hide this by making it "private"

Method Details

FamilyParam() public method

constructor which exposes for invoking
public FamilyParam ( string name, BuiltInParameterGroup group, ParameterType type, bool isInstance, int line ) : System
name string /// parameter name ///
group BuiltInParameterGroup /// indicate which group the parameter belongs to ///
type ParameterType /// the type of the parameter ///
isInstance bool /// indicate whethe the parameter is an instance parameter ///
line int /// record the location of this parameter in the family parameter file ///
return System