Example #1
0
 public FixedWidthField(int start, int end, FixedWidthTypes type, FixedWidthPositions seeker, FixedWidthTerminators terminator)
 {
     Start      = start;
     End        = end;
     Type       = type;
     Seeker     = seeker;
     Terminator = terminator;
 }
Example #2
0
 public FixedWidthField(FixedWidthField old)
 {
     Start = old.Start;
     End = old.End;
     Strict = old.Strict;
     DefaultValue = old.DefaultValue;
     Type = old.Type;
     Seeker = old.Seeker;
     Terminator = old.Terminator;
 }
Example #3
0
 public FixedWidthField(string columnName, string description, int length, int start, FixedWidthTypes type, FixedWidthTerminators term)
     : this(start, length, type, FixedWidthPositions.FROM_START, term)
 {
     this.ColumnName = columnName;
     this.Description = description;
 }
Example #4
0
 public FixedWidthField(int start, int end, FixedWidthTypes type, FixedWidthPositions seeker, FixedWidthTerminators terminator,
     object defaultValue, bool strict)
     : this(start, end, type, seeker, terminator)
 {
     DefaultValue = defaultValue;
     Strict = strict;
 }
Example #5
0
 public FixedWidthField(int start, int end, FixedWidthTypes type, FixedWidthPositions seeker, FixedWidthTerminators terminator)
 {
     Start = start;
     End = end;
     Type = type;
     Seeker = seeker;
     Terminator = terminator;
 }
Example #6
0
 public FixedWidthField(string columnName, string description, int length, int start, FixedWidthTypes type, FixedWidthTerminators term) :
     this(start, length, type, FixedWidthPositions.FROM_START, term)
 {
     this.ColumnName  = columnName;
     this.Description = description;
 }
Example #7
0
 public FixedWidthField(int start, int end, FixedWidthTypes type, FixedWidthPositions seeker, FixedWidthTerminators terminator,
                        object defaultValue, bool strict) :
     this(start, end, type, seeker, terminator)
 {
     DefaultValue = defaultValue;
     Strict       = strict;
 }