Exemple #1
0
 public IfcCurveStyle(IfcLabel name, IfcCurveFontOrScaledCurveFontSelect curveFont, IfcSizeSelect curveWidth, IfcColour curveColour, IfcBoolean modelOrDraughting) : base(name)
 {
     CurveFont         = curveFont;
     CurveWidth        = curveWidth;
     CurveColour       = curveColour;
     ModelOrDraughting = modelOrDraughting;
 }
Exemple #2
0
 public IfcTextStyleFontModel(IfcLabel name, List <IfcTextFontName> fontFamily, IfcFontStyle fontStyle, IfcFontVariant fontVariant, IfcFontWeight fontWeight, IfcSizeSelect fontSize) : base(name)
 {
     FontFamily  = fontFamily;
     FontStyle   = fontStyle;
     FontVariant = fontVariant;
     FontWeight  = fontWeight;
     FontSize    = fontSize;
 }
 public IfcTextStyleTextModel(IfcSizeSelect textIndent, IfcTextAlignment textAlign, IfcTextDecoration textDecoration, IfcSizeSelect letterSpacing, IfcSizeSelect wordSpacing, IfcTextTransformation textTransform, IfcSizeSelect lineHeight) : base()
 {
     TextIndent     = textIndent;
     TextAlign      = textAlign;
     TextDecoration = textDecoration;
     LetterSpacing  = letterSpacing;
     WordSpacing    = wordSpacing;
     TextTransform  = textTransform;
     LineHeight     = lineHeight;
 }
Exemple #4
0
 /// <summary>
 /// Construct a IfcTextStyleFontModel with all required attributes.
 /// </summary>
 public IfcTextStyleFontModel(IfcLabel name, List <IfcTextFontName> fontFamily, IfcSizeSelect fontSize) : base(name)
 {
     FontFamily = fontFamily;
     FontSize   = fontSize;
 }