Click or drag to resize

TemplateFindType Enumeration

Search mechanisms available for use with Find(String, TemplateFindType).

Namespace:  NetQuarry
Assembly:  EAP.Core (in EAP.Core.dll) Version: 2.0.0.0 (4.6.8.0)
Syntax
public enum TemplateFindType
Members
  Member nameValueDescription
ByName1 Search for the Template with a matching Name. Note that since Name is the primary index of the Templates collection, it is more common to use the Templates indexer when searching solely by name, e.g. Template tmpl = app.Templates["the-template"];
ByID2 Search for the Template with a matching ID .
ByNameThenID3 Search for the Template with a matching Name then, if not found, by matching ID.
See Also