March 28, 2024

Dynamic Windows Function [dw_filesystem_set_item]

Syntax

void dw_filesystem_set_item(HWND handle, void *pointer, int column, int row, void *data)

Parameters

HWND handle: Handle to the container window (widget).
void *pointer: Pointer to the allocated memory in dw_container_alloc().
int column: Zero based column of data being set.
int row: Zero based row of data being set.
void *data: Pointer to the data to be added.

Description

Sets an item in specified row and column to the given data.

Remarks

As of version 2.3 you can now pass NULL in the data field to initialize the cell to empty/default values.