ImageGear .NET v24.12 - Updated
text Property

ImageGear.Web.UI Library > ImageGear.Web.UI Namespace > Mark class : text Property
Specifies the text to display in a text mark.
Syntax
ASP.NET Ajax Javascript (Specification) 
function get_text() : String
function set_text(value : String)
ASP.NET Ajax Javascript (Usage) 
var resultVar = instanceOfMark.get_text();
Example

This JavaScript code will create the mark shown in the image on this page.

// Create a new text mark.
var mark = new ImageGear.Web.UI.Mark(ImageGear.Web.UI.MarkType.Text);

// Set various properties.
mark.set_rectangle({ x: 100, y: 150, width: 275, height: 75 });
mark.set_text('This is a text mark.\nIt has two lines of text.');
mark.set_fontName('Arial');
mark.set_fontSize(14);
mark.set_fontStyle(ImageGear.Web.UI.FontStyle.Underline | ImageGear.Web.UI.FontStyle.Italic);
mark.set_textHorizontalAlignment(ImageGear.Web.UI.HorizontalAlignment.Center);
mark.set_textColor('#7070ff');

// Add the mark to the page.
// Adding it after setting the properties avoids a lot of needless markChanged events.
$find('PageView1').get_artPage().addMark(mark);
Remarks

This property specifies the text to display in a text mark. If you change the value of this property, this object will raise its propertyChanged event.

This figure shows a text mark with two lines of text.

Mark types: This property is valid for Text marks.
Valid values: Any string.
Default value: A string containing no characters.

ImageGear for .NET name: Text, ActualText
NotateXpress (version 10) name: Text

See Also

Reference

Mark class
Mark Members