|
TRVTableItemInfo.BackgroundImage |
Top Previous Next |
|
Background image for the table. property BackgroundImage: TGraphic; (introduced in v1.8) Position of the image is defined by the BackgroundStyle property.Transparent images are supported. Assignment to this property copies the image, so you still need to free the source image yourself. Example 1 (assigning image) bmp := TBitmap.Create; bmp.LoadFromFile('c:\image.bmp'); table.BackgroundImage := bmp; bmp.Free; Example 2 (clearing the image) table.BackgroundImage := nil;
See also: See also properties:
See also properties of table cell: See also properties of TRichView: |