Click or drag to resize
CanvasTextFormatCustomTrimmingSign Property
Gets or sets a custom trimming sign.

Namespace:  Microsoft.Graphics.Canvas.Text
Assembly:  Microsoft.Graphics.Canvas (in Microsoft.Graphics.Canvas.dll) Version: 0.0.0.0
Syntax
C#
public ICanvasTextInlineObject CustomTrimmingSign { get; set; }

Property Value

Type: ICanvasTextInlineObject
Remarks

A custom trimming sign is represented by an application-implemented interface. The application chooses arbitrary drawing behavior to use as a trimming sign.

A custom trimming sign takes precedence over the text format's TrimmingSign property. For example, if the TrimmingSign property is set to Ellipsis, and a custom trimming sign was set, then the custom trimming sign will get used- not the ellipsis one.

See Also