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)); }
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)); }
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)); }
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))); }
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)); }
public ColumnSet SetStyle(string fieldName, HorizAlignments horizontalAlignment, VertiAlignments verticalAlignment, bool hasBorder) { return(Set(fieldName, null, null, horizontalAlignment, verticalAlignment, hasBorder, null, FooterType.None)); }