Uses of Class
LumiSoft.UI.Controls.Grid.WGridColumn

Packages that use WGridColumn
LumiSoft.UI.Controls.Grid   
LumiSoft.UI.Controls.Grid.Editors   
 

Uses of WGridColumn in LumiSoft.UI.Controls.Grid
 

Methods in LumiSoft.UI.Controls.Grid that return WGridColumn
 WGridColumn WGridColumns.AddColumn(java.lang.String text)
          Adds new column with specified text to columns collection.
 WGridColumn WGridColumns.AddColumn(java.lang.String text, int width)
          Adds new column with specified text and width to columns collection.
 WGridColumn WGridColumns.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.
 WGridColumn WGridColumns.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.
 WGridColumn WGridColumns.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.
 WGridColumn WGridColumns.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.
 WGridColumn WGridColumns.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.
 WGridColumn WGridColumns.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.
 WGridColumn WGridColumns.AddColumn(java.lang.String name, java.lang.String text, java.lang.String textID, int width, java.lang.String mappingName)
          Adds new column with specified name,text,width and DataColumn mapping name to columns collection.
 WGridColumn WGridColumns.AddColumn(java.lang.String name, java.lang.String text, java.lang.String textID, int width, java.lang.String mappingName, int cellTextHzAlign)
          Adds new column with specified name,text,width,DataColumn mapping name and cells text alignment to columns collection.
 WGridColumn WGridColumns.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.
 WGridColumn WGridColumns.get(int index)
          Gets column from specified index.
 WGridColumn WGridColumns.get(java.lang.String name)
          Gets column with specified column name.
 WGridColumn WGridTableView.getActiveColumn()
          Gets active cell column or null if no current cell.
 WGridColumn[] WGridColumns.getVisibleColumns()
          Returns visible columns (Column.getVisible = true).
 

Methods in LumiSoft.UI.Controls.Grid that return types with arguments of type WGridColumn
 java.util.Iterator<WGridColumn> WGridColumns.iterator()
          Gets iterator.
 

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

Uses of WGridColumn in LumiSoft.UI.Controls.Grid.Editors
 

Methods in LumiSoft.UI.Controls.Grid.Editors with parameters of type WGridColumn
 int WBaseEditor.CalculateHeight(java.awt.Graphics2D g, java.lang.Object value, WGridColumn column)
          Calculates height needed for this editor.
 void WBaseEditor.PaintDefault(java.awt.Graphics2D g, java.lang.Object value, java.awt.Rectangle cellBounds, boolean selected, WGridColumn column)
          Paints default editor.