/// <summary> /// Removes objects from the group. /// </summary> public void Remove(Tendon item) { Tendons.Remove(item); item.RemoveFromGroup(this); }
/// <summary> /// Removes objects from the group. /// </summary> /// <exception cref="CSiException"><see cref="CSiApiBase.API_DEFAULT_ERROR_CODE" /></exception> public void Remove(Tendon item) { setGroupAssign(item, remove: true); Tendons.Remove(item); item.RemoveFromGroup(this); }