How to set linespacing to 100% as a default in SVG

Hi

whenever i import an svg into coreldrawX8, linespacing is set to 0%. How to change it inside the SVG so it is 100% by default. 

by linespacing i mean that when i click on a textbox and hit enter, i can write on the next line, but the space between next line and line above is 0. 

Let me know if you need more clarification.

Thanks in advance!

Parents
  • Similar when copy/paste text from a word document. Line spacing is set as pt. 

    I created a macro that will fix it. Might work in this situation too. Paste the text then run the macro and see if that does it.

    Sub TextLineSpacing()
    Dim s As Shape, sr As ShapeRange
    Optimization = True
    Set sr = ActivePage.Shapes.FindShapes(Query:="@type ='text:artistic' or @type ='text:paragraph'")
    For Each s In sr
    s.Text.Story.SetLineSpacing cdrPercentOfPointSizeLineSpacing, 100, 200, 300
    Next s
    Optimization = False
    ActiveWindow.Refresh
    End Sub

Reply Children
No Data