StringTrimming Enumeration
.NET Framework 2.0
Specifies how to trim characters from a string that does not completely fit into a layout shape.
Namespace: System.Drawing
Assembly: System.Drawing (in system.drawing.dll)
Assembly: System.Drawing (in system.drawing.dll)
| Member name | Description | |
|---|---|---|
| Character | Specifies that the text is trimmed to the nearest character. | |
| EllipsisCharacter | Specifies that the text is trimmed to the nearest character, and an ellipsis is inserted at the end of a trimmed line. | |
| EllipsisPath | The center is removed from trimmed lines and replaced by an ellipsis. The algorithm keeps as much of the last slash-delimited segment of the line as possible. | |
| EllipsisWord | Specifies that text is trimmed to the nearest word, and an ellipsis is inserted at the end of a trimmed line. | |
| None | Specifies no trimming. | |
| Word | Specifies that text is trimmed to the nearest word. |
The following example shows how to set the Trimming property and how to use the StringTrimming enumeration. This example is designed to be used with a Windows Form. Paste this code into a form and call the ShowStringTrimming method when handling the form's Paint event, passing e as PaintEventArgs.
Private Sub ShowStringTrimming(ByVal e As PaintEventArgs) Dim format1 As New StringFormat Dim quote As String = "Not everything that can be counted counts," & _ " and not everything that counts can be counted." format1.Trimming = StringTrimming.EllipsisWord e.Graphics.DrawString(quote, Me.Font, Brushes.Black, _ New RectangleF(10.0F, 10.0F, 90.0F, 50.0F), format1) End Sub
private void ShowStringTrimming(PaintEventArgs e)
{
StringFormat format1 = new StringFormat();
String quote = "Not everything that can be counted counts,"
+ " and not everything that counts can be counted.";
format1.set_Trimming(StringTrimming.EllipsisWord);
e.get_Graphics().DrawString(quote, this.get_Font(),
Brushes.get_Black(), new RectangleF(10, 10, 90, 50), format1);
} //ShowStringTrimming
Windows 98, Windows Server 2000 SP4, Windows Millennium Edition, Windows Server 2003, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP Starter Edition
The Microsoft .NET Framework 3.0 is supported on Windows Vista, Microsoft Windows XP SP2, and Windows Server 2003 SP1.Community Additions
ADD
Show: