<< Return to Main Index

< Return to Class Index

CGXGridParam::EnableTrackRowHeight

void EnableTrackRowHeight(WORD wFlags = GX_TRACK_INDIVIDUAL | GX_TRACK_SMOOTHHEADER | GX_TRACK_NOPRESSEDHEADER | GX_TRACK_NOMARKTRACKLINE);

wFlags

Specifies the options:

Remarks

Specifies the options for or disables changing row heights for the end user.

·If you do not want the end user to be able to change the height of row headers (but all other rows should be sizeable), you should call

   GetParam()->EnableTrackRowHeight(GX_TRACK_INDIVIDUAL | GX_TRACK_NOTHEADER);

·If you want to disable tracking row heights, you should call

   GetParam()->EnableTrackRowHeight(FALSE);

·If all rows should be the same height (as for example Microsoft Query views), you should call

   GetParam()->EnableTrackRowHeight(GX_TRACK_ALL);

·If you do not want smooth resizing, you should call

   GetParam()->EnableTrackRowHeight(GX_TRACK_INDIVIDUAL);

See Also

CGXGridParam::IsEnableTrackRowHeight CGXGridParam::EnableTrackColWidth

CGXGridParam

Class Overview | Class Members