C# Class XPTable.Models.DropDownColumn

Inheritance: Column
Datei anzeigen Open project: binaryage/xrefresh

Private Properties

Property Type Description
Init void

Public Methods

Method Description
DropDownColumn ( ) : System

Creates a new DropDownColumn with default values

DropDownColumn ( string text ) : System

Creates a new DropDownColumn with the specified header text

DropDownColumn ( string text, Image image ) : System

Creates a new DropDownColumn with the specified header text and image

DropDownColumn ( string text, Image image, int width ) : System

Creates a new DropDownColumn with the specified header text, image and width

DropDownColumn ( string text, Image image, int width, bool visible ) : System

Creates a new DropDownColumn with the specified header text, image, width and visibility

DropDownColumn ( string text, int width ) : System

Creates a new DropDownColumn with the specified header text and width

DropDownColumn ( string text, int width, bool visible ) : System

Creates a new DropDownColumn with the specified header text, width and visibility

Private Methods

Method Description
Init ( ) : void

Initializes the DropDownColumn with default values

Method Details

DropDownColumn() public method

Creates a new DropDownColumn with default values
public DropDownColumn ( ) : System
return System

DropDownColumn() public method

Creates a new DropDownColumn with the specified header text
public DropDownColumn ( string text ) : System
text string The text displayed in the column's header
return System

DropDownColumn() public method

Creates a new DropDownColumn with the specified header text and image
public DropDownColumn ( string text, Image image ) : System
text string The text displayed in the column's header
image Image The image displayed on the column's header
return System

DropDownColumn() public method

Creates a new DropDownColumn with the specified header text, image and width
public DropDownColumn ( string text, Image image, int width ) : System
text string The text displayed in the column's header
image Image The image displayed on the column's header
width int The column's width
return System

DropDownColumn() public method

Creates a new DropDownColumn with the specified header text, image, width and visibility
public DropDownColumn ( string text, Image image, int width, bool visible ) : System
text string The text displayed in the column's header
image Image The image displayed on the column's header
width int The column's width
visible bool Specifies whether the column is visible
return System

DropDownColumn() public method

Creates a new DropDownColumn with the specified header text and width
public DropDownColumn ( string text, int width ) : System
text string The text displayed in the column's header
width int The column's width
return System

DropDownColumn() public method

Creates a new DropDownColumn with the specified header text, width and visibility
public DropDownColumn ( string text, int width, bool visible ) : System
text string The text displayed in the column's header
width int The column's width
visible bool Specifies whether the column is visible
return System