Hi cbeuker,
You can try the code below. This api will fire when editor load, and the code editor.ExecCommand("JustifyFull"); will execute command full justify.
- <script type="text/javascript">
- function CuteEditor_OnInitialized(editor)
- {
- editor.ExecCommand("JustifyFull");
- }
- </script>
Regards,
Ken