Online Documentation for Advanced Data Export .NET
QExportXLS.AdvancedGetExportText
public class XlsGetExportTextEventArgs : EventArgs
{
// Methods
public XlsGetExportTextEventArgs(int Sheet, int ColNo, string Text);
// Properties
public int ColNo { get; }
public int Sheet { get; }
public string Text { get; set; }
// Fields
private int _colNo;
private int _sheet;
private string _text;
}
public delegate void XlsGetExportTextEvent(object Sender, XlsGetExportTextEventArgs e);
public event SqlManager.QExport.Delegates.XlsGetExportTextEvent AdvancedGetExportText
Description
The AdvancedGetExportText event is the expanded analogue of the GetExportText event of the QExportBase class. The only difference in these events is the XlsGetExportTextEventArgs.Sheet parameter, which defines the result Excel sheet to apply the formatting to.
Note: the AdvancedGetExportText event takes place AFTER the GetExportText event.