*modent_deleteset

Deletes subsystemsets.

Syntax

*modent_deleteset entity_type mark_id ?deleteSetMembers=<value>? ?deleteContents=<value>?

Type

HyperMesh Tcl Modify Command

Description

Deletes subsystem sets. This command provides options to delete either the set members (that is, the subsets included in the set), and/or the contents (that is, the actual subsystems associated with each set). If no options are specified, neither the set members nor the contents are deleted (both default to 0).

Inputs

entity_type
The type of set entity to delete. Currently supported for subsystemsets.
mark_id
The ID of the mark containing the set entities to delete.
deleteSetMembers=<value>
The flag to specify whether to delete subsystem subsets.
deleteContents=<value>
The flag to specify whether to delete the actual subsystems associated with each set.

Examples

To delete the subsystemset with ID 2 and its contents:
*createmark subsystemsets 1 2
*modent_deleteset subsystemsets 1 deleteSetMembers=1 deleteContents=1

Errors

Incorrect usage results in a Tcl error. To detect errors, you can use the catch command:
if { [ catch {command_name...} ] } {
   # Handle error
}

Version History

2026