Online Documentation for Advanced Data Export .NET
QExportXLS.GetFooterParams
public class GetHeaderFooterParamsEventArgs : EventArgs
{
// Methods
public GetHeaderFooterParamsEventArgs(int Sheet, int Col, int Row, XlsFormat Format, string Str);
// Properties
public int Col { get; }
public XlsFormat Format { get; }
public int Row { get; }
public int Sheet { get; }
public string Str { get; set; }
// Fields
private int _col;
private XlsFormat _format;
private int _row;
private int _sheet;
private string _str;
}
public delegate void GetHeaderFooterParamsEvent(object Sender, GetHeaderFooterParamsEventArgs e);
public event SqlManager.QExport.Delegates.GetHeaderFooterParamsEvent GetFooterParams
Description
The GetFooterParams event takes place when the parameters of the footer cell are received. Depending on the cell position (GetHeaderFooterParamsEventArgs.Col, GetHeaderFooterParamsEventArgs.Row) and format (GetHeaderFooterParamsEventArgs.Format) you can edit the cell value.