Hi,
I am inserting watermark text in RadRichtextbox. Default behavior does not place watermark text in center of document.
1. I want to place watermark text in center document and 45* rotation
2. In some situation, watermark is hidden by content. For example Picture, or any content that I insert in document hides watermark text. Is there anyway to keep watermark in front all the time.
Following my code to insert watermark, and attached behavior actual and what is expected.
WatermarkTextSettings textSettings = new WatermarkTextSettings();
textSettings.Text =
@$"USER FULL NAME HERE
Designation Details
Current Organization
{DateTime.Now:MMMM dd\,yyyy HH:mm}";
textSettings.RotateAngle = -45;
textSettings.Opacity = .5;
textSettings.ForegroundColor = Colors.Gray;
textSettings.FontSize = 48;
textSettings.FontFamily = new FontFamily("Bahnschrift");
this.editor.SetWatermarkText(textSettings);