//Конструктор по умолчанию public DocumentFields() { Name = "Times New Roman"; Type = 0; ValueMaxLen = 0; Value = ""; TableValueMaxLen = null; TableValue = null; Style = new TxtStyle { FontName = "Times New Roman", FontSize = 10, FontSealing = 0 }; }
//Конструктор с параметрами public DocumentFields(string Name, string Value, List<List<string>> TableValue, TxtStyle Style , List<int> TableValueMaxLen = null, int ValueMaxLen = 0, byte Type = 0) { this.Name = Name; this.Type = Type; this.ValueMaxLen = ValueMaxLen; this.Value = Value; this.TableValueMaxLen = TableValueMaxLen; this.TableValue = TableValue; this.Style = Style; }