| AddColumn |
Appends one empty column at the right of the grid. |
| AddNodeRow |
Converts the row at ARow into a collapsible tree node header with AChildCount child data rows. ALevel sets the nesting depth (0 = top level). AMerge merges the header cell across all columns. |
| AddRow |
Appends one empty data row at the bottom of the grid. |
| ApplyFilter |
Evaluates the rules in the Filter collection against every data row and hides rows that do not match. Fires OnBeforeApplyFilter and OnAfterApplyFilter. |
| AutoFill |
Extends the pattern from the source range into the target range (Excel fill-handle behaviour). Direction is auto-detected from geometry when gafdAuto is passed. |
| AutoFillCustomListRemove |
Removes the custom AutoFill list registered under AKey. |
| AutoFillCustomListSet |
Registers a custom cyclic fill sequence under AKey (e.g. key='months', values=['Jan','Feb',...]). |
| AutoFillCustomListTryGet |
Retrieves the custom AutoFill list for AKey; returns True if found. |
| AutoFillCustomListsClear |
Removes all registered custom AutoFill cyclic lists. |
| AutoFillCustomListsCount |
Returns the number of registered custom AutoFill lists. |
| AutoNumberColumn |
Fills a column with sequential integers starting at AStartValue from AStartRow downward. |
| AutoNumberRow |
Fills a row with sequential integers starting at AStartValue from AStartColumn rightward. |
| BaseCell |
Returns the top-left anchor cell of a merged group; returns ACell unchanged if it is not part of a merge. |
| CanDeleteColumn |
Returns True when deleting the specified column is permitted by current options and event handlers. |
| CanDeleteRow |
Returns True when deleting the specified row is permitted by current options and event handlers. |
| CanInsertColumn |
Returns True when inserting a column at the specified position is permitted by current options and event handlers. |
| CanInsertRow |
Returns True when inserting a row at the specified position is permitted by current options and event handlers. |
| CanMergeCells |
Returns True when merging the specified rectangular block is permitted by current options and event handlers. |
| CanMoveColumn |
Returns True when moving the specified column is permitted by current options and event handlers. |
| CanMoveRow |
Returns True when moving the specified row is permitted by current options and event handlers. |
| CanSwapColumn |
Returns True when swapping the two specified columns is permitted by current options and event handlers. |
| CanSwapRow |
Returns True when swapping the two specified rows is permitted by current options and event handlers. |
| ClearCells |
Clears data in a specific rectangular cell range. |
| ClearData |
Removes all cell data while preserving structure (row/column count, widths, heights). |
| ClearDataForColumn |
Clears data in a column; pass AllRowTypes to include summary and node rows. |
| ClearDataForRow |
Clears data in a row; pass AllRowTypes to include summary and node rows. |
| ClearFilter |
Deactivates all filter rules and makes all rows visible. |
| ClearFind |
Resets the stateful find position used by FindNext. |
| ClearNodeRow |
Clears child data but preserves the node header structure. |
| CollapseAllNodes |
Collapses all node rows at once, hiding their children. |
| CollapseNode |
Collapses an expanded node row, hiding its children. |
| ColumnAverage |
Computes the average of all numeric cells in AColumn over the specified row range; AFromRow/AToRow default to -1 meaning all data rows. |
| ColumnCalculation |
Runs an aggregate over AColumn and stores the result in the named summary cells. The result persists and is re-evaluated by UpdateCalculations. |
| ColumnCounting |
Counts non-empty cells in AColumn over the specified row range. |
| ColumnCustomCalculation |
Runs a user-supplied callback over AColumn and returns its result. |
| ColumnDistinct |
Counts the distinct values in AColumn over the specified row range. |
| ColumnMax |
Returns the maximum numeric value in AColumn over the specified row range. |
| ColumnMin |
Returns the minimum numeric value in AColumn over the specified row range. |
| ColumnSpan |
Returns the number of columns this cell spans; 1 for a non-merged cell. |
| ColumnStandardDeviation |
Returns the standard deviation of numeric values in AColumn over the specified row range. |
| ColumnSum |
Returns the sum of numeric values in AColumn over the specified row range. |
| CopyColumnTo |
Copies a column's data to another TTMSFNCDataGridData instance; AIndex specifies the target column (-1 to append). |
| DeleteColumn |
Removes the specified column, shifting subsequent columns left. |
| DeleteColumns |
Removes ACount columns starting at AColumn, shifting subsequent columns left. |
| DeleteRow |
Removes the specified row, shifting subsequent rows up. |
| DeleteRows |
Removes ACount rows starting at ARow, shifting subsequent rows up. |
| EndUpdate |
Decrements the update counter and triggers a full refresh when it reaches zero, applying any pending sort, filter, group, or calculation changes. |
| ExpandAllNodes |
Expands all node rows at once, making their children visible. |
| ExpandNode |
Expands a collapsed node row, making its children visible. |
| Find |
Searches all data cells for AText using default parameters (contains, case-insensitive); returns the first matching cell coordinate, or an invalid cell if not found. |
| FindAll |
Finds all matching cells; sets AResults to the total count; returns the first match. |
| FindFirst |
Starts a stateful search session; use FindNext to advance to subsequent matches. |
| FindNext |
Advances to the next match in the direction specified by ADown (True = downward/rightward). |
| GetCellKind |
Returns the kind of the cell (normal, button, checkbox, bitmap, progress bar, etc.). |
| GetCellMergeType |
Classifies the cell's merge zone (normal data area, fixed header zone, freeze zone, etc.). |
| GetCellSize |
Returns the rendered pixel size of the cell accounting for any column/row span. |
| GetMaxLevel |
Returns the deepest nesting level across all node rows. |
| GetParentRow |
Returns the row index of the immediate parent node, or -1 if ARow is a top-level row. |
| GetRootRow |
Returns the row index of the topmost ancestor node. |
| GoToCell |
Scrolls the grid to make ACell visible; optionally selects it. |
| Group |
Groups data rows by the distinct values in AColumn; inserts a header row for each unique value. |
| GroupAverage |
Adds or updates a group average aggregate in the group header row for AColumn. |
| GroupCalculation |
Generic group aggregate with an explicit method enum; adds or updates the summary in the group header row for AColumn. |
| GroupCount |
Adds or updates a group count aggregate in the group header row for AColumn. |
| GroupCustomCalculation |
Group aggregate using a user-supplied callback; adds or updates the summary in the group header row for AColumn. |
| GroupDistinct |
Adds or updates a group distinct count aggregate in the group header row for AColumn. |
| GroupMax |
Adds or updates a group maximum aggregate in the group header row for AColumn. |
| GroupMin |
Adds or updates a group minimum aggregate in the group header row for AColumn. |
| GroupSort |
Sorts group header rows by their key or aggregate value in the specified direction. |
| GroupSortIndexed |
Re-applies the last group sort using the existing sort index. |
| GroupStandardDeviation |
Adds or updates a group standard deviation aggregate in the group header row for AColumn. |
| GroupSum |
Adds or updates a group sum aggregate in the group header row for AColumn. |
| HasRowData |
Returns True when the row has at least one non-empty cell value. |
| InsertColumn |
Inserts one empty column before AColumn, shifting existing columns right. |
| InsertColumns |
Inserts ACount empty columns before AColumn, shifting existing columns right. |
| InsertRow |
Inserts one empty row before ARow, shifting existing rows down. |
| InsertRows |
Inserts ACount empty rows before ARow, shifting existing rows down. |
| IsCellBase |
Returns True when the cell is the top-left anchor of a merge. |
| IsCellDisplayed |
Returns True when the cell is currently rendered (not hidden and within the visible range). |
| IsCellHidden |
Returns True when the cell's column or row is hidden. |
| IsCellMerged |
Returns True when the cell is part of a merge (either anchor or extension). |
| IsColumnDisplayed |
Returns True when the column is part of the current displayed data view. |
| IsGrouped |
Returns True when grouping is currently applied. |
| IsRowDisplayed |
Returns True when the row is visible (not hidden, not filtered out). |
| IsRowFilter |
Returns True when the row is a filter bar row (shows filter controls in fixed row cells). |
| IsRowFilteredDisplay |
Returns True when the row is excluded by the active filter. |
| IsRowNode |
Returns True when the row is a collapsible tree node row. |
| IsRowNormal |
Returns True when the row is a plain data row (not a summary, node, or filter row). |
| IsRowSummary |
Returns True when the row is a group summary/total row. |
| LinearFill |
Fills all data cells with sequential integers; set ADoFixed to True to include fixed rows. |
| LoadFromCSVData |
Loads data from a CSV file using the delimiter and options from Options.IO. |
| LoadFromCSVStreamData |
Loads data from a CSV stream using Options.IO settings. |
| LoadFromFileData |
Loads cell data from the native grid binary format file using the default encoding. |
| LoadFromFileStreamData |
Loads cell data from the native grid binary format from a stream using the default encoding. |
| LoadFromJSONData |
Loads data from a JSON file with encoding; ARowDataName/AColumnDataName map JSON keys to grid rows and columns; AColumnNames maps JSON property names to specific column indices. |
| LoadFromJSONStreamData |
Loads JSON from a stream with encoding; ARowDataName/AColumnDataName map JSON keys to grid rows and columns. |
| LoadFromJSONTextData |
Loads JSON from an in-memory string; ARowDataName/AColumnDataName map JSON keys to grid rows and columns. |
| LoadFromXMLData |
Loads data from an XML file. |
| LoadFromXMLStreamData |
Loads XML from a stream. |
| LoadSampleData |
Fills the grid with built-in demo data; useful for design-time preview. |
| MatchFilter |
Returns True when the row's cell values satisfy all currently active filter rules. |
| MergeCells |
Merges a rectangular block into a single display cell; the top-left cell becomes the anchor. |
| MergeColumn |
Merges all data cells in a column vertically into one display cell. |
| MergeColumns |
Vertically merges a range of columns. |
| MergeRange |
Merges all cells within the given coordinate range. |
| MergeRow |
Merges all data cells in a row horizontally into one display cell. |
| MergeRows |
Horizontally merges a range of rows. |
| MoveColumn |
Shifts a column to a new index, renumbering intervening columns. |
| MoveRow |
Shifts a row to a new index, renumbering intervening rows. |
| RandomFill |
Fills all data cells with random integers in [0, ARandomNumber]; set ADoFixed to True to include fixed rows. |
| RefreshData |
Refreshes display for a specific cell, optionally triggering a full update. |
| RemoveFilter |
Removes all filter rules and makes all rows visible again. |
| RemoveNodeRow |
Removes the node structure from a row, converting it back to a plain data row. |
| Replace |
Replaces all occurrences of AOriginalValue with ANewValue; returns the number of replacements made. |
| RowAverage |
Computes the average of all numeric cells in ARow over the specified column range; AFromColumn/AToColumn default to -1 meaning all data columns. |
| RowCalculation |
Runs an aggregate over ARow and stores the result in the named summary cell. The result persists and is re-evaluated by UpdateCalculations. |
| RowCounting |
Counts non-empty cells in ARow over the specified column range. |
| RowCustomCalculation |
Runs a user-supplied callback over ARow and returns its result. |
| RowDistinct |
Counts the distinct values in ARow over the specified column range. |
| RowMax |
Returns the maximum numeric value in ARow over the specified column range. |
| RowMin |
Returns the minimum numeric value in ARow over the specified column range. |
| RowSpan |
Returns the number of rows this cell spans; 1 for a non-merged cell. |
| RowStandardDeviation |
Returns the standard deviation of numeric values in ARow over the specified column range. |
| RowSum |
Returns the sum of numeric values in ARow over the specified column range. |
| SaveToCSVData |
Exports data to a CSV file using the delimiter and options from Options.IO. |
| SaveToCSVStreamData |
Exports data to a CSV stream using Options.IO settings. |
| SaveToFileData |
Saves cell data to the native grid binary format file using the default encoding. |
| SaveToFileStreamData |
Saves cell data to the native grid binary format into a stream using the default encoding. |
| SetNodeRow |
Same as AddNodeRow but replaces existing node state. |
| Sort |
Sorts all data rows by the values in AColumn. |
| SortIndexed |
Re-applies the sort described by the current SortIndexList without re-reading data. |
| SplitCell |
Removes a merge, restoring each cell in the previously merged area to independence. |
| SwapCells |
Swaps the data between two individual cells. |
| SwapColumn |
Exchanges the position of two columns. |
| SwapRow |
Exchanges the position of two rows. |
| ToggleNode |
Expands if collapsed, collapses if expanded. |
| TypeOfValue |
Returns the TTypeKind classification of a raw TTMSFNCDataGridCellValue (tkInteger, tkFloat, tkString, etc.). |
| Ungroup |
Removes all grouping structure and returns the grid to a flat view. |
| UpdateCalculations |
Re-runs all stored column and row calculations. |
| UpdateColumnCalculation |
Re-runs one named column calculation. |
| UpdateColumnCalculations |
Re-runs all column calculations. |
| UpdateRowCalculation |
Re-runs one named row calculation. |
| UpdateRowCalculations |
Re-runs all row calculations. |
| ValueIsBoolean |
Returns True when the raw cell value holds a Boolean. |
| ValueIsDateTime |
Returns True when the raw cell value can be interpreted as a date/time using default format settings. |
| ValueIsDateTimeType |
Returns True when the raw cell value is stored as a DateTime type variant. |
| ValueIsEmpty |
Returns True when the raw cell value is empty (no data). |
| ValueIsFloat |
Returns True when the raw cell value holds a floating-point number. |
| ValueIsInteger |
Returns True when the raw cell value holds an integer. |
| ValueIsString |
Returns True when the raw cell value holds a string. |
| ValueToBoolean |
Safely converts a raw cell value to Boolean using default format settings. |
| ValueToDateTime |
Safely converts a raw cell value to TDateTime using default format settings. |
| ValueToFloat |
Safely converts a raw cell value to Double using default format settings. |
| ValueToInt64 |
Safely converts a raw cell value to Int64 using default format settings. |
| ValueToInteger |
Safely converts a raw cell value to Integer using default format settings. |
| ValueToString |
Safely converts a raw cell value to string using default format settings. |