Table of Contents

TTMSFNCDataGridRendererCell Class

A cell that participates in the renderer drawing pipeline. Extends TTMSFNCDataGridCell with a Renderer back-reference, export lifecycle hooks, and a DrawContent override used during both on-screen rendering and export.

API unit family: TMSFNCDataGridRenderer Inherits from: TTMSFNCDataGridCell

Syntax

TTMSFNCDataGridRendererCell = class(TTMSFNCDataGridCell)

Properties

Name Description
Renderer The TTMSFNCDataGridRenderer instance responsible for drawing this cell.

Methods

Name Description
AfterExport Called after the cell has been written to an export target (PDF, HTML, spreadsheet). Restores any state that was modified by BeforeExport.
BeforeExport Called before the cell is written to an export target. Prepares the cell state for export rendering (e.g. swaps in the export renderer).
DrawContent Draws the cell content using the provided graphics context. Called by the renderer for both screen painting and export operations.