Editor in a Project Wizard
Ayush Kumar
Member, Moderator, Employee Posts: 467
✭✭✭✭
Answers
-
This needs a custom layout for the wizard. Add the following
ComponentRenderer
to the UI layout in the XML<component name="MyEditor" topAttachment="Title" leftAttachment="Properties" rightAttachment="" rightOffset="10" bottomAttachment="Chart" widthType="Percentage" width="25" heightType="Percentage" height="50" maxHeight="50" componentType="editorComponent" />
The text in the Editor can be retrieved via the following python command:
my_editor = step.UserInterface.GetComponent("MyEditor") text = my_editor.Content
4