TF_SELECTIONSTYLE structure (msctf.h)

The TF_SELECTIONSTYLE structure represents the style of a selection.

Syntax

typedef struct TF_SELECTIONSTYLE {
  TfActiveSelEnd ase;
  BOOL           fInterimChar;
} TF_SELECTIONSTYLE;

Members

ase

Specifies the active end of the selection. For more information, see TfActiveSelEnd.

fInterimChar

Indicates if the selection is an interim character. If this value is nonzero, then the selection is an interim character and ase will be TF_AE_NONE. If this value is zero, the selection is not an interim character.

Remarks

An interim character selection spans exactly one character and is visually represented as a solid rectangle that is usually flashing. This is a standard UI element of Korean and some Chinese character compositions. fInterimChar is an indication that a specific character is composed. fInterimChar can only be nonzero for a single selection. In this case, there will be no caret because the highlight replaces it.

Requirements

Requirement Value
Minimum supported client Windows 2000 Professional [desktop apps | UWP apps]
Minimum supported server Windows 2000 Server [desktop apps | UWP apps]
Header msctf.h
Redistributable TSF 1.0 on Windows 2000 Professional

See also

TF_SELECTION

TfActiveSelEnd