/// <summary> /// Get the contents of the format string, by looking up /// the DataFormat against the supplied workbook /// </summary> /// <param name="workbook">The workbook.</param> /// <returns></returns> public String GetDataFormatString(Frame.Utils.NPOI.HSSF.Model.InternalWorkbook workbook) { HSSFDataFormat format = new HSSFDataFormat(workbook); return(format.GetFormat(DataFormat)); }
/// <summary> /// Get the contents of the format string, by looking up /// the DataFormat against the bound workbook /// </summary> /// <returns></returns> public String GetDataFormatString() { HSSFDataFormat format = new HSSFDataFormat(workbook); return(format.GetFormat(DataFormat)); }