Sets the shape of the ends of the path.
Parameters
Parameter |
Description |
index |
Specify 0 for the beginning of the path, 1 for the end of the path, or 2 to set both ends of the path. |
cap |
Specify one of the following values:
DlxApp.PATHCAP_FLAT |
DlxApp.PATHCAP_ROUND |
DlxApp.PATHCAP_ARROW |
DlxApp.PATHCAP_TRIANGLE |
DlxApp.PATHCAP_DOVETAIL |
|
Return Value
If the operation ends correctly it returns true otherwise it returns false.
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 pen = new DlxPenStyle(0.5, new DlxColor("orangered"));
doc.SetStyle(pen);
var brush = new DlxBrushStyle("beige");
doc.SetStyle(brush);
var obj = layer.DrawPath(new DlxPoint(30, 30), new DlxPoint(80, 90), 3, DlxApp.PATHCAP_ROUND, DlxApp.PATHCAP_ARROW, false);
if (obj.GetStartCap()!=DlxApp.PATHCAP_DOVETAIL)
obj.SetCap(0, DlxApp.PATHCAP_DOVETAIL);
if (obj.GetEndCap()!=DlxApp.PATHCAP_ARROW)
obj.SetCap(1, DlxApp.PATHCAP_ARROW);
}
}
}
|
See also