Type a page name and press Enter. You'll jump to the page if it exists, or you can create it if it doesn't.
To create a page in a module other than Enums, prefix the name with the module name and a period.
TS_SFT_Constants (Enums)
.
C# Definition:
[Flags]
enum TS_SFT_Constants :uint {
///<summary>Display the language bar as a floating window. This constant cannot be combined with the TF_SFT_DOCK, TF_SFT_MINIMIZED, TF_SFT_HIDDEN, or TF_SFT_DESKBAND constants.</summary>
SHOWNORMAL = 0x00000001,
/// <summary>Dock the language bar in its own task pane. This constant cannot be combined with the TF_SFT_SHOWNORMAL, TF_SFT_MINIMIZED, TF_SFT_HIDDEN, or TF_SFT_DESKBAND constants. Available only on Windows XP.</summary>
DOCK = 0x00000002,
/// <summary>Display the language bar as a single icon in the system tray. This constant cannot be combined with the TF_SFT_SHOWNORMAL, TF_SFT_DOCK, TF_SFT_HIDDEN, or TF_SFT_DESKBAND constants. In Windows XP, use TF_SFT_DESKBAND instead.</summary>
MINIMIZED = 0x00000004,
/// <summary>Hide the language bar. This constant cannot be combined with the TF_SFT_SHOWNORMAL, TF_SFT_DOCK, TF_SFT_MINIMIZED, or TF_SFT_DESKBAND constants.</summary>
HIDDEN = 0x00000008,
/// <summary>Dock the language bar in the righthand end of the system task bar (immediately left of the system tray/clock). This constant cannot be combined with the TF_SFT_SHOWNORMAL, TF_SFT_DOCK, TF_SFT_MINIMIZED, or TF_SFT_HIDDEN constants. Available only on Windows XP.</summary>
DESKBAND = 0x00000800,
/// <summary>Make the language bar opaque.</summary>
NOTRANSPARENCY = 0x00000010,
/// <summary>Make the language bar partially transparent. Available only on Windows 2000 or later.</summary>
LOWTRANSPARENCY = 0x00000020,
/// <summary>Make the language bar highly transparent. Available only on Windows 2000 or later.</summary>
HIGHTRANSPARENCY = 0x00000040,
/// <summary>Display text labels next to language bar icons.</summary>
LABELS = 0x00000080,
/// <summary>Hide language bar icon text labels.</summary>
NOLABELS = 0x00000100,
/// <summary>Display text service icons on the taskbar when the language bar is minimized.</summary>
EXTRAICONSONMINIMIZED = 0x00000200,
/// <summary>Hide text service icons on the taskbar when the language bar is minimized.</summary>
NOEXTRAICONSONMINIMIZED = 0x00000400,
}
VB Definition:
Enum TS_SFT_Constants
TODO
End Enum
Notes:
None.
Please edit this page!
Do you have...
helpful tips?
corrections to the existing content?
additional languages you want to include?
Select "Edit This Page" on the right hand toolbar and edit it!