Gets the type of the specified point.

syntaxSyntax:
DlxRectangle.GetPointType(index)

Parameters

Parameter Description
index Point index. The value must be between 0 and GetPointCount()-1.

Return Value

Returns the type of the specified point. Returns one of the following values:

Value Meaning
DlxApp.SHAPEPOINTTYPE_START Indicates that the point is the start of a figure.
DlxApp.SHAPEPOINTTYPE_LINE Indicates that the point is one of the two endpoints of a line.
DlxApp.SHAPEPOINTTYPE_BEZIER Indicates that the point is an endpoint or control point of a cubic Bézier spline.

Example

  Copy codeCopy 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())
    {
      doc.SetStyle(new DlxPenStyle(0.5, "orange"));

      var obj = layer.DrawRectangle(new DlxRect(50,40,120,90), 0, 50, 0, 0, 50);

      doc.SetStyle(new DlxPenStyle(1, "blue"));

      var n = 0;
      var offset = 60;
      for (var i = 0; i < obj.GetPointCount(); i++)
      {
        switch (obj.GetPointType(i))
        {
        case DlxApp.SHAPEPOINTTYPE_START:
          n = 1;
          break;
        case DlxApp.SHAPEPOINTTYPE_LINE:
          n++;
          if (n==2)
          {
            layer.DrawLine(obj.GetPoint(i-1).OffsetY(offset), obj.GetPoint(i).OffsetY(offset));
            n = 1;
            if (obj.GetPointFlags(i) & DlxApp.SHAPEPOINTFLAGS_CLOSE)
            {
            }
          }
          break;
        case DlxApp.SHAPEPOINTTYPE_BEZIER:
          n++;
          if (n==4)
          {
            layer.DrawBezier(obj.GetPoint(i-3).OffsetY(offset), obj.GetPoint(i-2).OffsetY(offset), obj.GetPoint(i-1).OffsetY(offset), obj.GetPoint(i).OffsetY(offset));
            n = 1;
            if (obj.GetPointFlags(i) & DlxApp.SHAPEPOINTFLAGS_CLOSE)
            {
            }
          }
          break;
        }
      }
    }
  }
}

See also