Delphi declaration
Background:TBackground;
C++ declaration
TBackground Background;
Description
Sets the grid background. This bitmap can be tiled across all cells as background bitmap or positioned.
Bitmap
Delphi declarationCells
Bitmap:TBitmap;
C++ declaration
TBitmap Bitmap;
Description
Contains the background bitmap
Delphi declarationDisplay
Cells:TBackgroundCells
C++ declaration
TBackgroundCells Cells;
Description
Selects to which cells the background applies.TBackgroundCells = (bcNormal,bcFixed)When the background only applies to the fixed cells, the display should be tiled.
Delphi declarationLeft
Display:TBackgroundDisplay=(bdTile,bdFixed);
C++ declaration
TBackgroundDisplay Display=(bdTile,bdFixed);
Description
Display mode can be tiled (bdTile) or on a fixed position (bdFixed)
Delphi declarationTop
Left:integer
C++ declaration
int Left;
Description
Coordinate from left of the bitmap when fixed position is used.
Delphi declaration
Top:integer;
C++ declaration
int Top;
Description
Coordinate from top of the bitmap when fixed position is used.