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())
{
doc.SetStyle(new DlxPenStyle(0.5, "orange"));
var obj = layer.DrawShape("V90,110,0;V110,130,0;V130,110,0;B130,110,150,90,170,130,200,110;");
doc.SetStyle(new DlxPenStyle(1, "blue"));
var n = 0;
var figure = obj.GetFigure();
for (var i = 0; i < figure.GetPointCount(); i++)
{
switch (figure.GetPointType(i))
{
case DlxApp.SHAPEPOINTTYPE_START:
n = 1;
break;
case DlxApp.SHAPEPOINTTYPE_LINE:
n++;
if (n==2)
{
layer.DrawLine(figure.GetPoint(i-1).OffsetY(20), figure.GetPoint(i).OffsetY(20));
n = 1;
if (figure.GetPointFlags(i) & DlxApp.SHAPEPOINTFLAGS_CLOSE)
{
}
}
break;
}
}
}
}
}
|