Gets the negative tolerance value.

syntaxSyntax:
DlxDimension.GetToleranceNeg()

Return Value

Returns the negative value of tolerance or DlxApp.TOLERANCEVALUE_BYSTYLE if the value of tolerance is taken from the style.

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())
    {
      var p1 = new DlxPoint(50, 50);
      var p2 = new DlxPoint(100, 100);
      layer.DrawLine(p1, p2);
      var obj = layer.DrawAlignedDimension(p1, p2, 10);

      if (obj.GetToleranceMode()==DlxApp.TOLERANCEMODE_BYSTYLE)
      {
        obj.SetTextFormat("@V@U@T");
        obj.SetTolerance(DlxApp.TOLERANCEMODE_RELATIVE, 
           obj.GetTolerancePos()==DlxApp.TOLERANCEVALUE_BYSTYLE ? 0.5 : obj.GetTolerancePos(), 
           obj.GetToleranceNeg()==DlxApp.TOLERANCEVALUE_BYSTYLE ? -0.3 : obj.GetToleranceNeg());
      }
    }
  }
}

See also