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

TA_ (Constants)
 
.
Summary

C# Constants:

        // Text alignment constants
        // These are used with the SetTextAlign() system call
        public const int
        TA_NOUPDATECP = 0,
        TA_UPDATECP = 1,

        TA_LEFT = 0,
        TA_RIGHT = 2,
        TA_CENTER = 6,

        TA_TOP = 0,
        TA_BOTTOM = 8,
        TA_BASELINE = 24,
        TA_RTLREADING = 256,
        TA_MASK = (TA_BASELINE + TA_CENTER + TA_UPDATECP + TA_RTLREADING);

        // These are used with the text layout is vertical
        public const int
        VTA_BASELINE = TA_BASELINE,
        VTA_LEFT =     TA_BOTTOM,
        VTA_RIGHT =    TA_TOP,
        VTA_CENTER =   TA_CENTER,
        VTA_BOTTOM =   TA_RIGHT,
        VTA_TOP =      TA_LEFT;

VB Constants:

TODO

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!

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