EMS logo

Produits

Advanced Data Export .NET

Notre statut de partenariat

MySQL Gold Certified Partner
Microsoft Certified Partner
Oracle Certified Partner
Embarcadero Technology Partner

EMS Advanced Data Export .NET

Documentation en ligne

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.


See also:
QExportXLS
QExportXLS Properties
QExportXLS Methods
QExportXLS Events