Determines whether the document should be excluded from a library or a schema.

syntaxSyntax:
DlxDocument.IsToIgnore()

Return Value

Returns true if the document must be excluded from a library or schema otherwise returns false.

Example

  Copy codeCopy code
var doc = DlxApp.GetJob().FindDocument("Examples Sch", DlxApp.DOCTYPE_SCHEMATIC);
if (doc.IsValid() && !doc.IsToIgnore())
{
  doc.SetIgnore(true);
}

See also