@msdn=http://search.microsoft.com/search/results.aspx?qu=$$$ @pinvoke=http://pinvoke.net/$$$.htm Summary: The TF_SFT_* constants specify display settings of a floating language bar !!!!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. Documentation: TF_SFT_Constants@msdn on MSDN
Edit Enums.TS_SFT_Cons...
You do not have permission to change this page. If you feel this is in error, please send feedback with the contact link on the main page.