Model.hm_edittextcard#
- Model.hm_edittextcard(card)#
Launches the HyperMesh Tk control Card Editor to allow editing of a specific control card. Use
Model.hm_istextcard()to determine if a control card can be edited using this function.- Parameters:
card (Entity) – The object describing the entity of the text control card.
- Returns:
hwReturnStatus- Status object
Example#
Editing element with ID 100#import hm import hm.entities as ent model = hm.Model() model.hm_edittextcard(card=ent.Card(model, 100))