Search
Module:
Directory

   Desktop Functions:

   Smart Device Functions:


Show Recent Changes
Subscribe (RSS)
Misc. Pages
Comments
FAQ
Helpful Tools
Playground
Suggested Reading
Website TODO List
Download Visual Studio Add-In

TS_SFT_Constants (Enums)
 
.
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
 

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!

 
Access PInvoke.net directly from VS:
Terms of Use
Edit This Page
Find References
Show Printable Version
Revisions