Help > Web Development > Object Reference > Object Reference > ISYSConceptNode > FindNode Method
<a name="kanchor287"></a>ISYSConceptNode:FindNode Method
Returns a node with the given name if one exists (or null if not).

Syntax
[VBScript]
function ISYSConceptNode.FindNode(_
  string Name_ 
) as ISYSConceptNode
[C#]
IISYSConceptNode  IISYSConceptNode.FindNode(
  string Name
);
[ColdFusion/Java]
IISYSConceptNode  IISYSConceptNode.FindNode(
  java.lang.String Name
) throws ComException;
Parameters
NameThe name of the node that you wish to find.

Examples
[VBScript]
<% ' Find the concept node "HR Manual" set concept = Application("ISYSConcept").FindNode("HR Manual") if NOT concept = Nothing then set results = concept.PerformFind(Application("ISYSIndex")) end if %>