Page 1 of 1

LineSpacing between table and text does not work

Posted: Thu Mar 03, 2022 3:28 am
by wolf1860

Code: Select all

  rve.ClearUndo;
  rve.DeleteUnusedStyles(True, True, True);
  for var i := 0 to rve.Style.ParaStyles.Count - 1 do
  begin
    rve.Style.ParaStyles[i].LineSpacingType := rvlsPercent;
    rve.Style.ParaStyles[i].LineSpacing := 150;
  end;
  rve.Format;
Image

Re: LineSpacing between table and text does not work

Posted: Thu Mar 03, 2022 4:06 am
by Sergey Tkachenko
Line spacing is not applied to tables. Use SpaceAfter property instead.

Re: LineSpacing between table and text does not work

Posted: Sun Mar 06, 2022 9:43 am
by wolf1860
Thank u!