Documents
NextGrid & NextDBGrid
- FieldChooser Tutorial
- NextGrid How To
- InputLine Tutorial
- Html Column Tutorial
- NextGrid Slide Style Tutorial
- Edit events in NextGrid
NextGrid
- NextGrid Quick Start
- Graphic Column Tutorial
- Optimize NextGrid
- Custom Draw in NextGrid
- VirtualColumn Tutorial
- NextGrid Custom Sorting
- TreeColumn Tutorial
NextDBGrid
NextInspector
- NextInspector Item Types
- NextInspector Quick Start
- NextInspector Advanced tutorial
- Map VCL property to item
NextSheet
NextCollection
- NxInfoPanel Tutorial
- NxOutlookBar Tutorial
- NxPathControl and NxNotebook tutorial
- NxPathControl Quick Start
- NxButton Tutorial
- NxFlipPanel and NxHeaderPanel Quick Start
- NxPageControl and NxNotebook Quick Start
Misc
- DateTime FormatMask
- NxComboBox styles
- NxPreview Quick Start
- Numeric FormatMask
- Enable typing unicode characters in InplaceEditors
- 32bit Bitmaps Tutorial
Labs
Graphic Column Tutorial
Related Articles:
Info
- Skill:
- Version: 1.0.0
- Authod: Bojan Nikolic
- Created:
- Updated: 2008-04-21
Downloads
There is a TNxGraphicColumn in normal and in DB (NextDbGrid) version. In DB version you will need to attach BLOB graphic field to column.
In normal version you will need to add one TNxGraphicColumn, then to create TGraphic object and to attach this object to ObjectReference property of cell and NextGrid will show this image.
var
G: TGraphic;
begin
{ Add one cell }
NextGrid1.AddRow;
{ Create object }
G := TBitmap.Create;
{ Load file into G object }
G.LoadFromFile('testbitmap.bmp');
{ Cell will point to G object }
NextGrid1.Cell[0, 0].ObjectReference := G;
end;