Gets the text string.
Syntax: |
DlxLeader.GetText(plainText)
|
Parameters
Parameter |
Description |
plainText |
Specify true to get a plain text string with no formatting. Specify false to preserve styles and formatting. |
Return Value
Returns the text string. If plainText is true, a plain text string with no formatting is returned.
Only the overlining is retained. The overlined characters are delimited by the '|' character.
Example
|
Copy code
|
var prj = DlxApp.GetJob().GetProject("Example Sch");
if (!prj.IsValid())
prj = DlxApp.GetJob().NewProject("Example Sch");
var doc = prj.GetDocument("Examples Sch", DlxApp.DOCTYPE_SCHEMATIC);
if (!doc.IsValid())
{
doc = prj.NewDocument("Examples Sch", DlxApp.DOCTYPE_SCHEMATIC);
doc.SetPageFormat("A4", false);
}
if (doc.IsValid() && doc.Activate())
{
var page = doc.GetActivePage();
if (page.IsValid())
{
var layer = page.GetLayerFromType(DlxApp.LAYERTYPE_DRAWING);
if (layer.IsValid())
{
var style = new DlxLeaderStyle("diagram measurements");
doc.SetStyle(style);
var vertices = new Array();
vertices[0] = new DlxPoint(30,30);
vertices[1] = new DlxPoint(50,50);
vertices[2] = new DlxPoint(70,50);
var obj = layer.DrawLeader(vertices, "Hello, World.");
obj.SetText(obj.GetText() + "\nHello, World.");
}
}
}
|
See also