struct ViewerSetMode
{
int Type;
union {
int iParam;
char *cParam;
} Param;
DWORD Flags;
DWORD Reserved;
};
| Mode | Description |
|---|---|
| VSMT_HEX | Text/Hex mode: iParam=1 - turn Hex mode on, iParam=0 - text mode. |
| VSMT_WRAP | Line wrap: iParam=1 - line wrap is on, iParam=0 - off) |
| VSMT_WORDWRAP | Word wrap: iParam=1 - word wrap is on, iParam=0 - off. |
| Mode | Description |
|---|---|
| VSMFL_REDRAW | Redraw the screen. Otherwise use the VCTL_REDRAW command to redraw the screen after changing the mode. |