borland Packages  Class Hierarchy  jbcl.control Package  Index 

DatasetColumnView class

java.lang.Object
   +----borland.jbcl.view.ColumnView
           +----borland.jbcl.control.DatasetColumnView

About the DatasetColumnView class

Variables  Constructors  Properties  Methods  

Implements ItemEditSite, ItemPaintSite, Serializable, Cloneable

The DatasetColumnView component is a simple extension of ColumnView, which acts as a persister of Column properties. These properties are used to display Column components in a GridControl. In addition to all basic behavior of a ColumnView, it fills its properties from the Column object that is passed to its constructor methods. It has no extra functionality except for its constructors.

Data-aware controls pick up Column properties when bound to a DataSet. After that, to affect display, set properties of the ColumnView or DataSetColumnView components.


DatasetColumnView variables

Variables implemented in borland.jbcl.view.ColumnView

DatasetColumnView constructors

DatasetColumnView properties

*Read-only properties **Write-only properties

Properties implemented in borland.jbcl.view.ColumnView

Properties implemented in java.lang.Object

DatasetColumnView methods

Methods implemented in borland.jbcl.view.ColumnView

Methods implemented in java.lang.Object


DatasetColumnView constructors

DatasetColumnView(borland.jbcl.dataset.Column)

  public DatasetColumnView(borland.jbcl.dataset.Column column)
Creates a DataSetColumnView object, binds it to the specified Column, and sets its properties to the property values of the Column object.

Parameters:

column
The Column component to bind the DataSetColumnView component to.

DatasetColumnView(borland.jbcl.dataset.Column, borland.jbcl.view.ColumnView)

  public DatasetColumnView(borland.jbcl.dataset.Column column, borland.jbcl.view.ColumnView clonee)
Creates a DataSetColumnView object, binds it to the specified Column, and sets its properties to the property values of the specified clonee. This constructor is useful when you want to copy properties from an existing ColumnView object and use them as default values.

Parameters:

column
The Column component to bind the DataSetColumnView component to.
clonee
The Column component you want to clone properties from for this DataSetColumnView.