|
MessengerYouLike
|
|
When value set by property IMSDK.IMClient.MAXGroups exceeds
public event OnTotalNumberOfGroupsExceeds;
Public Event OnTotalNumberOfGroupsExceeds(ByVal GroupName As String)
|
Return Values |
Description |
|
ByVal GroupName As String |
this is the GroupName that could not be added as no more groups could be added because of the property IMSDK.IMClient.MAXGroups |
This event is fired when more Groups are added as set by the property IMSDK.IMClient.MAXGroups
[Visual Basic]
Private Sub MC_OnTotalNumberOfGroupsExceeds(ByVal GroupName As String) Handles MC.OnTotalNumberOfGroupsExceeds
Debug.Writeline("On Total Number Of Groups Exceeds : " & GroupName)
End Sub