AddingSelectColumnEventArgs

AddingSelectColumnEventArgs allows the processing of the event of adding columns to a SELECT statement.

Namespace:
Inetdev.Data.Query
Type:
Class
Public:
Yes
Protected:
No
Sealed:
No
Abstract:
No
Inherits from:
System.EventArgs

Constructors

AddingSelectColumnEventArgs

Default constructor

Signature:
public Void AddingSelectColumnEventArgs()

AddingSelectColumnEventArgs

Creates a new instance of AddingSelectColumnEventArgs.

Signature:
public Void AddingSelectColumnEventArgs(column)
Parameters
Name Type Summary
column IColumn The IColumn that is being added.

Properties

CancelColumnAdding

Gets or sets whether the column adding should be cancelled.

Signature:
public Boolean CancelColumnAdding { get; set; }

Column

Gets or sets the column being added.

Signature:
public IColumn Column { get; set; }

ColumnText

Gets or sets the column text.

Signature:
public String ColumnText { get; set; }