ZeeGrid Control Message

ZGM_SETROWRESTRICTION


ZGM_SETROWRESTRICTION

An application sends a ZGM_SETROWRESTRICTION message to set the restriction value of every cell in the specified row in the ZeeGrid. Restrictions perform numeric data entry validation, allowing only valid characters per the restriction to be entered.

ZGM_SETROWRESTRICTION
wParam = (WPARAM)(int) iRow;         //Row number
lParam = (LPARAM)(int) iRestriction; //Cell restriction value

Parameters

iRow
The value of wParam. The ZeeGrid row number to set every cell the restriction value specified in lParam.

iRestriction
The value of lParam. The data restriction attribute value to set every cell in the the specified row. Valid values are in the range of [0..4].
The restriction values are defined as follows:

  1. No Restriction
  2. Signed Integer
  3. Unsigned Integer
  4. Signed Double
  5. Unsigned Double

Return Values

This message does not return a value.

Remarks

A restriction only restricts the characters allowed to be entered into a cell by manual keyboard input. If a paste operation is performed on restricted cells, the restriction will apply and the paste operation may not be able to be completed fully.

Copyright © 2002-2016 by David Hillard