Ejemplo n.º 1
0
 internal double ReadSizeSpecification(WidthSpecificationModeType widthSpecificationMode)
 {
     // When the value is 'absolute', then an associated parameter of type SS
     // resolves to the basic data type VDC. Otherwise, associated
     // SS parameters resolve to the basic data type R. [ISO/IEC 8632-1 7.1, Table 11]
     if (widthSpecificationMode == WidthSpecificationModeType.Absolute)
     {
         return(ReadVdc());
     }
     else
     {
         return(ReadReal());
     }
 }
Ejemplo n.º 2
0
 public MarkerSizeSpecificationMode(WidthSpecificationModeType widthSpecificationMode)
     : base(2, 4)
 {
     WidthSpecificationMode = widthSpecificationMode;
 }
 public LineWidthSpecificationMode(WidthSpecificationModeType widthSpecificationMode)
     : base(2, 3)
 {
     WidthSpecificationMode = widthSpecificationMode;
 }
 public EdgeWidthSpecificationMode(WidthSpecificationModeType widthSpecificationMode)
     : base(2, 5)
 {
     WidthSpecificationMode = widthSpecificationMode;
 }
 public InteriorStyleSpecificationMode(WidthSpecificationModeType widthSpecificationMode)
     : base(2, 16)
 {
     WidthSpecificationMode = widthSpecificationMode;
 }