Ejemplo n.º 1
0
 public ColumnSet Insert(int index, string fieldName, string title, string valueFormat, HorizAlignments horizontalAlignment, VertiAlignments verticalAlignment, bool hasBorder, int width, FooterType footerType = FooterType.None)
 {
     return(Insert(index, fieldName, title, valueFormat, new HorizAlignments?(horizontalAlignment), new VertiAlignments?(verticalAlignment), new bool?(hasBorder), new int?(width), footerType));
 }
Ejemplo n.º 2
0
 public ColumnSet Insert(int index, string fieldName, string title, string valueFormat, HorizAlignments horizontalAlignment, VertiAlignments verticalAlignment, bool hasBorder, FooterType footerType = FooterType.None)
 {
     return(Insert(index, fieldName, title, valueFormat, horizontalAlignment, verticalAlignment, hasBorder, null, footerType));
 }
Ejemplo n.º 3
0
 public ColumnSet Add(string fieldName, string title, HorizAlignments horizontalAlignment, VertiAlignments verticalAlignment, bool hasBorder, int width, FooterType footerType = FooterType.None)
 {
     return(Add(fieldName, title, null, horizontalAlignment, verticalAlignment, hasBorder, width, footerType));
 }
Ejemplo n.º 4
0
 public ColumnSet Set(string fieldName, string format, HorizAlignments horizontalAlignment, VertiAlignments verticalAlignment, bool hasBorder, int width, FooterType footerType = FooterType.None)
 {
     return(Set(fieldName, null, format, new HorizAlignments?(horizontalAlignment),
                new VertiAlignments?(verticalAlignment), new bool?(hasBorder), new int?(width)));
 }
Ejemplo n.º 5
0
 public ColumnSet Set(string fieldName, string format, HorizAlignments horizontalAlignment, VertiAlignments verticalAlignment, bool hasBorder, FooterType footerType = FooterType.None)
 {
     return(Set(fieldName, null, format, horizontalAlignment, verticalAlignment, hasBorder, null));
 }
Ejemplo n.º 6
0
 public ColumnSet SetStyle(string fieldName, HorizAlignments horizontalAlignment, VertiAlignments verticalAlignment, bool hasBorder)
 {
     return(Set(fieldName, null, null, horizontalAlignment, verticalAlignment, hasBorder, null, FooterType.None));
 }