Online Documentation for Advanced Data Export .NET

QExportBase.BeforeExportRow


 

public class BeforeExportRowEventArgs : EventArgs

{

    // Methods

    public BeforeExportRowEventArgs(QExportRow Row, bool Accept);

 

    // Properties

    public bool Accept { get; set; }

    public QExportRow Row { get; }

 

    // Fields

    private bool _accept;

    private QExportRow _row;

}

 

public delegate void BeforeExportRowEvent(object Sender, BeforeExportRowEventArgs e);

 

public event SqlManager.QExport.Delegates.BeforeExportRowEvent BeforeExportRow

 

Description

The BeforeExportRow event allows you to manage data during the export process. The property Row of BeforeExportRowEventArgs object allows you to access data in the current row, and the property Accept allows you to export the row or not. If the Accept is set to True, the row would be exported.