Page 1 of 1
text vertical
Posted: Sat Feb 15, 2014 10:06 am
by Ceprotec
Hello
exists as write text vertically?
thanks sergey
Posted: Sat Feb 15, 2014 11:30 am
by Sergey Tkachenko
Only in table cells (see Cell.Rotation property)
Posted: Mon Feb 17, 2014 5:41 pm
by Ceprotec
all right,
Now, how to make sure the rvActionSaveAs1 function automatically dialed the rvf item?
Posted: Mon Feb 17, 2014 7:18 pm
by Sergey Tkachenko
Sorry, I do not understand your question.
For new files, a default format is specified in RVAControlPanel.DefaultFileFormat. It is RVF by default. So rvActionSaveAs opens a dialog showing RVF format by default.
For existing files, rvActionSaveAs opens a dialog showing the current file format by default.
Posted: Mon Feb 17, 2014 8:51 pm
by Ceprotec
I want that after clicking the Save As button in the field shapes that I would get automatic RTF and no more RVF, how do I change?
Posted: Wed Feb 19, 2014 8:44 am
by Sergey Tkachenko
Do you want it for new files?
Assign properties of TRVAControlPanel:
DefaultFileFormat = ffeRTF
DefaultFileName = 'Untitled.rtf'
DefaultExt = 'rtf'
If you want to remove RVF completely, remove it from RVActionOpen1.Filter and RVActionSaveAs1.Filter
Posted: Wed Feb 19, 2014 1:18 pm
by Ceprotec
ok, I'll try.
Thanks sergey
Posted: Mon Feb 24, 2014 11:12 am
by Ceprotec
problem solved sergey
Thank you.
But now my question is another, as I put the table borders and borders of transparent cell at runtime?
Posted: Mon Feb 24, 2014 7:39 pm
by Sergey Tkachenko
Sorry, I do not understand the question.
If you want to insert a table without borders, assign
Code: Select all
table.BorderWidth := 0;
table.CellBorderWidth := 0;
Posted: Tue Feb 25, 2014 10:59 am
by Ceprotec
I have several tables in the text, I would like to have printed the text to go to take the edge off, all at runtime.
Posted: Tue Feb 25, 2014 12:33 pm
by Sergey Tkachenko
Sorry, I still do not understand.
Can you send me an image showing what you want to implement?
Posted: Tue Feb 25, 2014 2:41 pm
by Ceprotec
I put this table by button, because I need the edges after printing I would like to remove the border at runtime.
Posted: Tue Feb 25, 2014 3:05 pm
by Sergey Tkachenko
Borders around tables are removed if you assign
table.CellBorderWidth := 0;