TS_STATUS structure

The TS_STATUS structure contains document status data.

Syntax


typedef struct {
  DWORD dwDynamicFlags;
  DWORD dwStaticFlags;
} TS_STATUS;

Members

dwDynamicFlags

Contains a set of flags that can be changed by an app at run time. For example, an app can enable a check box for the user to reset the document status. This member can contain zero, or one or more of the following values.

ValueMeaning
TS_SD_LOADINGThe document is loading.
TS_SD_READONLYThe document is read-only.

 

dwStaticFlags

Contains a set of flags that cannot be changed at run time. This member can contain zero, or one or more of the following values.

ValueMeaning
TS_SS_DISJOINTSELThe document supports multiple selections.
TS_SS_REGIONSThe document can contain multiple regions.
TS_SS_TRANSITORYThe document is expected to have a short usage cycle.
TS_SS_NOHIDDENTEXTThe document will never contain hidden text.
TS_SS_TKBAUTOCORRECTENABLEStarting with Windows 8: The document supports autocorrection provided by the touch keyboard.
TS_SS_TKBPREDICTIONENABLEStarting with Windows 8: The document supports text suggestions provided by the touch keyboard.

 

Requirements

Minimum supported client

Windows 2000 Professional [desktop apps only]

Minimum supported server

Windows 2000 Server [desktop apps only]

Redistributable

TSF 1.0 on Windows 2000 Professional

Header

Textstor.h

IDL

Textstor.idl

See also

ITextStoreACP::GetStatus
ITextStoreACPSink::OnStatusChange
ITextStoreAnchor::GetStatus
ITextStoreAnchorSink::OnStatusChange

 

 

Show: