C# Class ZForge.Controls.XPTable.Models.ImageColumn

Inheritance: Column
ファイルを表示 Open project: zhuangyy/Motion Class Usage Examples

Private Properties

Property Type Description
Init void

Public Methods

Method Description
CreateDefaultEditor ( ) : ICellEditor

Gets the Column's default CellEditor

CreateDefaultRenderer ( ) : ICellRenderer

Gets the Column's default CellRenderer

GetDefaultEditorName ( ) : string

Gets a string that specifies the name of the Column's default CellEditor

GetDefaultRendererName ( ) : string

Gets a string that specifies the name of the Column's default CellRenderer

ImageColumn ( ) : System

Creates a new ImageColumn with default values

ImageColumn ( string text ) : System

Creates a new ImageColumn with the specified header text

ImageColumn ( string text, Image image ) : System

Creates a new ImageColumn with the specified header text and image

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

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

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

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

ImageColumn ( string text, int width ) : System

Creates a new ImageColumn with the specified header text and width

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

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

Private Methods

Method Description
Init ( ) : void

Initializes the ImageColumn with default values

Method Details

CreateDefaultEditor() public method

Gets the Column's default CellEditor
public CreateDefaultEditor ( ) : ICellEditor
return ICellEditor

CreateDefaultRenderer() public method

Gets the Column's default CellRenderer
public CreateDefaultRenderer ( ) : ICellRenderer
return ICellRenderer

GetDefaultEditorName() public method

Gets a string that specifies the name of the Column's default CellEditor
public GetDefaultEditorName ( ) : string
return string

GetDefaultRendererName() public method

Gets a string that specifies the name of the Column's default CellRenderer
public GetDefaultRendererName ( ) : string
return string

ImageColumn() public method

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

ImageColumn() public method

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

ImageColumn() public method

Creates a new ImageColumn with the specified header text and image
public ImageColumn ( 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

ImageColumn() public method

Creates a new ImageColumn with the specified header text, image and width
public ImageColumn ( 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

ImageColumn() public method

Creates a new ImageColumn with the specified header text, image, width and visibility
public ImageColumn ( 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

ImageColumn() public method

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

ImageColumn() public method

Creates a new ImageColumn with the specified header text, width and visibility
public ImageColumn ( 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