Click or drag to resize
DigitalRuneTextSpriteText Property
Gets or sets the text. See remarks.

Namespace: DigitalRune.Graphics
Assembly: DigitalRune.Graphics (in DigitalRune.Graphics.dll) Version: 1.2.0.0 (1.2.1.14562)
Syntax
public Object Text { get; set; }

Property Value

Type: Object
The text - see remarks. The default value is .
Remarks

The value can be set as a String, a StringBuilder, or a general Object. If it is a general object, the value is converted to its string representation by calling ToString immediately. (The property internally stores either a String or StringBuilder.)

Depending on the value that was set, the get accessor returns either , a String, or a StringBuilder.

See Also