* Merge winforms framework content to working branch (#14) * Breadcrumb / TOC / Move net5 to net folder (#15) * change path from net5 to net * Mess with bread/toc * Mess with bread/toc * Mess with bread/toc * Mess with bread/toc * Mess with bread/toc * Mess with bread/toc * Mess with bread/toc * Mess with bread/toc * Mess with bread/toc * Mess with bread/toc * Mess with bread/toc * Mess with bread/toc * Mess with bread/toc * Mess with bread/toc * Add .net 5 winforms placeholder article (#16) * added some metadata and adjusted net5 placeholder * corrections * corrections * corrections * Test1 * Swapping landing page vs concept * fix links * Fix links * Fix desc
1.8 KiB
title, ms.date, dev_langs, helpviewer_keywords, ms.assetid
| title | ms.date | dev_langs | helpviewer_keywords | ms.assetid | ||||||
|---|---|---|---|---|---|---|---|---|---|---|
| How to: Create Vertical Text | 03/30/2017 |
|
|
50c69046-4188-47d9-b949-cc2610ffd337 |
How to: Create Vertical Text
You can use a xref:System.Drawing.StringFormat object to specify that text be drawn vertically rather than horizontally.
Example
The following example assigns the value xref:System.Drawing.StringFormatFlags.DirectionVertical to the xref:System.Drawing.StringFormat.FormatFlags%2A property of a xref:System.Drawing.StringFormat object. That xref:System.Drawing.StringFormat object is passed to the xref:System.Drawing.Graphics.DrawString%2A method of the xref:System.Drawing.Graphics class. The value xref:System.Drawing.StringFormatFlags.DirectionVertical is a member of the xref:System.Drawing.StringFormatFlags enumeration.
The following illustration shows the vertical text:
[!code-csharpSystem.Drawing.FontsAndText#31] [!code-vbSystem.Drawing.FontsAndText#31]
Compiling the Code
- The preceding example is designed for use with Windows Forms, and it requires xref:System.Windows.Forms.PaintEventArgs
e, which is a parameter of xref:System.Windows.Forms.PaintEventHandler.
