1st Line Indent in TMSFMXNSRichTextView

Does TMSFMXNSRichTextView support first-line indents? If not, does it provide a means to access the underlying component and pass code to it?

Hi,

Yes first line indents are supported, you can use

FillChar(val, sizeof(TTMSFMXNativeMacRichTextLibParagraphStyle), 0);
rt := 'Aligning text, and much more';
val.FirstLineHeadIndent := 20;

TMSFMXNativeNSRichTextView1.SetParagraphStyle(val, Pos(rt, str) - 1, length(rt));