Page 1 of 1

Tabs in memo

PostPosted: 23 Nov 2016 10:18
by asp
Hi!

How to input TAB characters (#9) in memo? I know about TabReplacement property, but I want to preserve TABs in the text, not replace them. By the way, it seems that TabReplacement only works if Num=3 and Space=True (default settings). If you set the other values, it does nothing.

Re: Tabs in memo

PostPosted: 25 Nov 2016 18:08
by Alexander Bulei
Hi asp,

How to input TAB characters (#9) in memo?


It's possible in our component.

Just set:

delphi code
IWCGJQMemoEx1.JQMemoExOptions.TabReplacement.Use:= True;
IWCGJQMemoEx1.JQMemoExOptions.TabReplacement.Space:= False; // DISABLE CONVERSATION TO SPACE
IWCGJQMemoEx1.JQMemoExOptions.TabReplacement.Num:= 1; // HOW MANY??


P.S: I have fixed the problem with storing Use property in next beta build.

Best Regards.