Determines whether the document should be excluded from a library or a schema.
Syntax: |
---|
DlxDocument.IsToIgnore() |
Return Value
Returns true if the document must be excluded from a library or schema otherwise returns false.
Example
Copy code | |
---|---|
var doc = DlxApp.GetJob().FindDocument("Examples Sch", DlxApp.DOCTYPE_SCHEMATIC);
if (doc.IsValid() && !doc.IsToIgnore())
{
doc.SetIgnore(true);
}
|