ProjectFindGroupableModelElement Method  | 
 
            Finds the groupable model element with the name specified. Names are considered case insensitive. Searches entities, valuetypes and typedviews
            
 
    Namespace: 
   SD.LLBLGen.Pro.ApplicationCore.ProjectClasses
    Assembly:
   SD.LLBLGen.Pro.ApplicationCore (in SD.LLBLGen.Pro.ApplicationCore.dll) Version: 5.4.0.0 (5.4.0)
Syntaxpublic GroupableModelElement FindGroupableModelElement(
	string groupName,
	string elementName
)
Public Function FindGroupableModelElement ( 
	groupName As String,
	elementName As String
) As GroupableModelElement
Parameters
- groupName
 - Type: SystemString
Name of the group. - elementName
 - Type: SystemString
Name of the element. 
Return Value
Type: 
GroupableModelElementthe groupable model element specified or null if not found
RemarksConsider other methods if you want to call this method in a loop as it performs a linear search
See Also