The Portrate Interview Engine

DPLFormDataModel.FindSubModel Method 

Finds a submodel with the given path. The path is the full path to the submodel, not including any property names. Constraint clauses can be used to narrow the field of searching, such as: Set[property=value1]/Set2/Set3[property=value2]

[Visual Basic]
Public Function FindSubModel( _ 
   ByVal path As String, _ 
   ByVal bCreateIt As Boolean _ 
) As DPLFormDataModel
[C#]
public DPLFormDataModel FindSubModel(
   string path,
   bool bCreateIt
);
[C++]
public: DPLFormDataModel* FindSubModel(
   String* path,
   bool bCreateIt
);
[JScript]
public function FindSubModel(
   String path,
   bool bCreateIt
): DPLFormDataModel;

Parameters

path
bCreateIt

Return Value

See Also

DPLFormDataModel Class | Portrate.Interview.Model Namespace