Class TOptionsAppearance
Unit
rDBGrid
Declaration
type TOptionsAppearance = class(TPersistent)
Description
setting for rDBGrid appearance, part of TOptionEx2
Hierarchy
- TPersistent
- TOptionsAppearance
Overview
Methods
Properties
 |
property SkipCellHighlight: boolean read FSkipCellHighlight write FSkipCellHighlight default false; |
 |
property DrawRowFocus: boolean read FDrawRowFocus write SetDrawRowFocus default false; |
 |
property DrawColoredRow: boolean read FDrawColoredRow write SetDrawColoredRow default false; |
 |
property HighlightMultiselect: boolean read FHighlightMultiselect write SetHighlightMultiselect default true; |
 |
property HideHScrollBar: boolean read FHideHScrollBar write SetHideHScrollBar default false; |
 |
property StandardTabKey: boolean read FStandardTabKey write FStandardTabKey default false; |
 |
property ReturnAsTabKey: boolean read FReturnAsTabKey write FReturnAsTabKey default false; |
 |
property DragCell: boolean read FDragCell write FDragCell default false; |
 |
property DragToScrollData: boolean read FDragToScrollData write FDragToScrollData default false; |
 |
property HintMaxLength: integer read FHintMaxLength write FHintMaxLength default 2000; |
 |
property ColumnMinWidth: integer read FColumnMinWidth write FColumnMinWidth default 40; |
 |
property ColumnMaxWidth: integer read FColumnMaxWidth write FColumnMaxWidth default 200; |
 |
property ColumnWidthMaxRecordsSearch: integer read FColumnWidthMaxRecordsSearch write FColumnWidthMaxRecordsSearch default 2000; |
 |
property LookupResetDelay: cardinal read FLookupResetDelay write FLookupResetDelay default 2500; |
 |
property DataRowLineColor: TColor read FDataRowLineColor write SetDataRowLineColor default clNone; |
 |
property DataRowLineStyle: TPenStyle read FDataRowLineStyle write SetDataRowLineStyle default psSolid; |
 |
property DataColLineColor: TColor read FDataColLineColor write SetDataColLineColor default clNone; |
 |
property DataColLineStyle: TPenStyle read FDataColLineStyle write SetDataColLineStyle default psSolid; |
 |
property DataRowInFixedColsAsTitle: boolean read FDataRowInFixedColsAsTitle write SetDataRowInFixedColsAsTitle default false; |
 |
property TitleRowLineColor: TColor read FTitleRowLineColor write SetTitleRowLineColor default clNone; |
 |
property TitleRowLineStyle: TPenStyle read FTitleRowLineStyle write SetTitleRowLineStyle default psSolid; |
 |
property TitleColLineColor: TColor read FTitleColLineColor write SetTitleColLineColor default clNone; |
 |
property TitleColInGroupLineColor: TColor read FTitleColInGroupLineColor write SetTitleColInGroupLineColor default clNone; |
 |
property TitleColLineStyle: TPenStyle read FTitleColLineStyle write SetTitleColLineStyle default psSolid; |
Description
Methods
Properties
 |
property SkipCellHighlight: boolean read FSkipCellHighlight write FSkipCellHighlight default false; |
disable cell highlight
|
 |
property DrawRowFocus: boolean read FDrawRowFocus write SetDrawRowFocus default false; |
show focus for all active row
|
 |
property DrawColoredRow: boolean read FDrawColoredRow write SetDrawColoredRow default false; |
each second row is colored with color defined by ColorOddRow
|
 |
property HighlightMultiselect: boolean read FHighlightMultiselect write SetHighlightMultiselect default true; |
mutiselected rows are highlighted or colored
|
 |
property HideHScrollBar: boolean read FHideHScrollBar write SetHideHScrollBar default false; |
hide horizontal scrollbar
|
 |
property StandardTabKey: boolean read FStandardTabKey write FStandardTabKey default false; |
tab key in not edit mode select next control
|
 |
property ReturnAsTabKey: boolean read FReturnAsTabKey write FReturnAsTabKey default false; |
return key in not edit mode select next column or row (as tab key)
|
 |
property DragCell: boolean read FDragCell write FDragCell default false; |
enable dragging of cell value to other controls
|
 |
property DragToScrollData: boolean read FDragToScrollData write FDragToScrollData default false; |
enable using drag and move to scroll data in the grid
|
 |
property HintMaxLength: integer read FHintMaxLength write FHintMaxLength default 2000; |
maximal number of chars in the hint message
|
 |
property ColumnMinWidth: integer read FColumnMinWidth write FColumnMinWidth default 40; |
minimal column width used for AutoFit and SetColumnWidth
|
 |
property ColumnMaxWidth: integer read FColumnMaxWidth write FColumnMaxWidth default 200; |
miximal column width used for AutoFit and SetColumnWidth
|
 |
property ColumnWidthMaxRecordsSearch: integer read FColumnWidthMaxRecordsSearch write FColumnWidthMaxRecordsSearch default 2000; |
define maximal count of records searched to find data column width
|
 |
property LookupResetDelay: cardinal read FLookupResetDelay write FLookupResetDelay default 2500; |
define delay from key press to lookup reset
|
 |
property DataRowLineColor: TColor read FDataRowLineColor write SetDataRowLineColor default clNone; |
define own color of row line in data grid, use clNone to use standard line
|
 |
property DataRowLineStyle: TPenStyle read FDataRowLineStyle write SetDataRowLineStyle default psSolid; |
define own style of row line in data grid
|
 |
property DataColLineColor: TColor read FDataColLineColor write SetDataColLineColor default clNone; |
define own color of column line in data grid, use clNone to use standard line
|
 |
property DataColLineStyle: TPenStyle read FDataColLineStyle write SetDataColLineStyle default psSolid; |
define own style of column line in data grid
|
 |
property DataRowInFixedColsAsTitle: boolean read FDataRowInFixedColsAsTitle write SetDataRowInFixedColsAsTitle default false; |
define if row line for fixed columns ar the same as in title
|
 |
property TitleRowLineColor: TColor read FTitleRowLineColor write SetTitleRowLineColor default clNone; |
define own color of row line in title/fixed part of grid, use clNone to use standard line
|
 |
property TitleRowLineStyle: TPenStyle read FTitleRowLineStyle write SetTitleRowLineStyle default psSolid; |
define own style of row line in title/fixed part of grid
|
 |
property TitleColLineColor: TColor read FTitleColLineColor write SetTitleColLineColor default clNone; |
define own color of column line in title/fixed part of grid, use clNone to use standard line
|
 |
property TitleColInGroupLineColor: TColor read FTitleColInGroupLineColor write SetTitleColInGroupLineColor default clNone; |
define own color of column line in title of grid inside the defined group, use clNone to use standard line
|
 |
property TitleColLineStyle: TPenStyle read FTitleColLineStyle write SetTitleColLineStyle default psSolid; |
define own style of column line in title/fixed part of grid
|
Generated by PasDoc 0.15.0.
|