Hello again,
Sorry about all the questions about this control. There isn't really any documentation as of yet so I'm kind of working blind I guess.
Basically what I want is a "Stamp" function that inserts a datetime into the textbox in bold at the very start of the page, with an enter after it. I managed to insert the datetime but at the moment I can only insert it in the place where the cursor is, not at the start.
Here's what I used:
radRichTextBox.Document.InsertAtCaretPosition(DateTime.Now.ToShortDateString(), null);
So yeah, is there any way to insert this at the start of the document? Maybe make it bold and put an new empty line under it?
Any help would be greatly appreciated.
Sorry about all the questions about this control. There isn't really any documentation as of yet so I'm kind of working blind I guess.
Basically what I want is a "Stamp" function that inserts a datetime into the textbox in bold at the very start of the page, with an enter after it. I managed to insert the datetime but at the moment I can only insert it in the place where the cursor is, not at the start.
Here's what I used:
radRichTextBox.Document.InsertAtCaretPosition(DateTime.Now.ToShortDateString(), null);
So yeah, is there any way to insert this at the start of the document? Maybe make it bold and put an new empty line under it?
Any help would be greatly appreciated.