1 module d2d.font.itext;
2 
3 import d2d;
4 
5 /// Interface containing text drawable functions.
6 interface IText : IDrawable, IDisposable, IVerifiable
7 {
8 	/// Gets the scale in percent.
9 	@property float scale();
10 	/// Sets the scale in percent.
11 	@property void scale(float value);
12 
13 	/// Gets the text.
14 	@property string text();
15 	/// Modifies the text.
16 	@property void text(string value);
17 }