| ProjectIsNameInUseInGroup Method  | 
 
            Determines whether the specified nameToCheck is already present in the group groupName. The nameToCheck and group name are checked case insenstive.
            
 
    Namespace: 
   SD.LLBLGen.Pro.ApplicationCore.ProjectClasses
    Assembly:
   SD.LLBLGen.Pro.ApplicationCore (in SD.LLBLGen.Pro.ApplicationCore.dll) Version: 5.1.0.0 (5.1.0)
Syntaxpublic bool IsNameInUseInGroup(
	string nameToCheck,
	string groupName,
	out string errorText
)
Public Function IsNameInUseInGroup ( 
	nameToCheck As String,
	groupName As String,
	<OutAttribute> ByRef errorText As String
) As Boolean
Parameters
- nameToCheck
 - Type: SystemString
The name to check. - groupName
 - Type: SystemString
Name of the group. - errorText
 - Type: SystemString
The error text. 
Return Value
Type: 
Boolean
            true if there's already an element with the name nameToCheck in the group groupName.
            
See Also