GeometryGym.Ifc.IfcLabel.IfcLabel C# (CSharp) Method

IfcLabel() public method

public IfcLabel ( string value ) : System
value string
return System
		public IfcLabel(string value) { mValue = string.IsNullOrEmpty(value) ? "" : ParserIfc.Encode(value); }
		public override string ToString() { return "IFCLABEL('" + mValue + "')"; }