Uses of Class
LumiSoft.UI.Controls.WGrid.Column

Packages that use Column
LumiSoft.UI.Controls.WGrid   
 

Uses of Column in LumiSoft.UI.Controls.WGrid
 

Methods in LumiSoft.UI.Controls.WGrid that return Column
 Column Columns.AddColumn(java.lang.String text)
          Adds new column with specified text to columns collection.
 Column Columns.AddColumn(java.lang.String text, int width)
          Adds new column with specified text and width to columns collection.
 Column Columns.AddColumn(java.lang.String text, int width, java.lang.String mappingName)
          Adds new column with specified text,width and DataColumn mapping name to columns collection.
 Column Columns.AddColumn(java.lang.String text, int width, java.lang.String mappingName, int cellTextHzAlign)
          Adds new column with specified text,width,DataColumn mapping name and cells text alignment to columns collection.
 Column Columns.AddColumn(java.lang.String text, int width, java.lang.String mappingName, int cellTextHzAlign, java.lang.String cellTextFormat)
          Adds new column with specified text,textID,width,DataColumn mapping name,cells text alignment and cell text format to columns collection.
 Column Columns.AddColumn(java.lang.String text, java.lang.String textID, int width, java.lang.String mappingName)
          Adds new column with specified text,width and DataColumn mapping name to columns collection.
 Column Columns.AddColumn(java.lang.String text, java.lang.String textID, int width, java.lang.String mappingName, int cellTextHzAlign)
          Adds new column with specified text,width,DataColumn mapping name and cells text alignment to columns collection.
 Column Columns.AddColumn(java.lang.String text, java.lang.String textID, int width, java.lang.String mappingName, int cellTextHzAlign, java.lang.String cellTextFormat)
          Adds new column with specified text,textID,width,DataColumn mapping name,cells text alignment and cell text format to columns collection.
 Column Columns.AddColumn(java.lang.String name, java.lang.String text, java.lang.String textID, int width, java.lang.String mappingName, int cellTextHzAlign, java.lang.String cellTextFormat)
          Adds new column with specified name,text,textID,width,DataColumn mapping name,cells text alignment and cell text format to columns collection.
 Column Columns.get(int index)
          Gets column from specified index.
 Column Columns.get(java.lang.String name)
          Gets column with specified column name.
 Column[] Columns.getVisibleColumns()
          Returns visible columns (Column.getVisible = true).
 

Methods in LumiSoft.UI.Controls.WGrid that return types with arguments of type Column
 java.util.Iterator<Column> Columns.iterator()
          Gets iterator.
 

Methods in LumiSoft.UI.Controls.WGrid with parameters of type Column
 java.lang.Object RowInfo.GetValue(Column column)
          Gets specified cell value for this row.
 int Columns.indexOf(Column column)
          Gets specified column index in columns collection.
 void Columns.MoveColumn(Column column, int index)
          Moves column to specified index.
 boolean WGridListener.OnValidateCellValue(Column column, DataRowView dr, java.lang.Object value)
          Invoked when grid needs to store cell value.
 boolean WGridAdapter.OnValidateCellValue(Column column, DataRowView dr, java.lang.Object value)
           
 void Columns.remove(Column column)
          Removes specified column from columns collection.