TMSFMXRichEditor : 2 Questions

I don't see an onchange event, any way to determine if the user changed the text? I tried oncaretchanged but that doesn't consistently work.


Also, any way to programmatically add a page break? I tried doing 
TMSFMXRichEditor1.InsertChar(char(12)), form feed, but that didn't work

thank you
1) There is at this time no OnChange event. You can use the OnKey*, OnMouse* events and from there, check TMSFMXRichEditor.Modified: boolean
2) You can use
TMSFMXRichEditor.AddLineBreak;