Please see the attached image. On the left are TX Text Controls with margins set to 0. On the right are DevExpress RichEditControls. I can seem to get the margins set to 0. I've tried
C#richEditControl.Document.Sections[0].Margins.Left = 0;
richEditControl.Document.Sections[0].Margins.Right = 0;
richEditControl.Document.Sections[0].Margins.Top = 0;
richEditControl.Document.Sections[0].Margins.Bottom = 0;
But that doesn't seem to do it. How do I set the margins to 0?