예제 #1
0
 /// <summary>
 /// Removes objects from the group.
 /// </summary>
 public void Remove(Cable item)
 {
     Cables.Remove(item);
     item.RemoveFromGroup(this);
 }
예제 #2
0
 /// <summary>
 /// Removes objects from the group.
 /// </summary>
 /// <exception cref="CSiException"><see cref="CSiApiBase.API_DEFAULT_ERROR_CODE" /></exception>
 public void Remove(Cable item)
 {
     setGroupAssign(item, remove: true);
     Cables.Remove(item);
     item.RemoveFromGroup(this);
 }