Displaying 3 results from an estimated 3 matches for "marginright".
Did you mean:
imarginright
2010 Feb 09
1
odfTable: table width and alignment
...omes left
aligned, not centered.
The table style is understood by odfWeave -- here is the output I get after
sourcing my style definition file:
> getStyles()$table
[1] "RTable1"
> getStyleDefs()[[getStyles()$table]]
$type
[1] "Table"
$marginLeft
[1] "2.0 in"
$marginRight
[1] "0.05in"
$marginTop
[1] "0.05in"
$marginBottom
[1] "0.05in"
$align
[1] "center"
I am not sure why these style options do not seem to have effect on the
output. My specific questions are:
(1) How do I get table alignment to work?
(2) Is the only way...
2008 May 18
8
FXTable::fitColumnsToContents
On May 17, 2008, at 6:54 AM, David Toll wrote:
> I tried to submit the following message to the "fxruby-users"
> message board (I clicked the link to send it as an email to fxruby-users at rubyforge.org
> , but the message did not appear). I conclude I do not know how to
> submit questions to this message board.
You need to be subscribed to the mailing list before you
2007 Sep 29
0
libswfdec/swfdec_initialize.as libswfdec/swfdec_initialize.h
....kerning = parseInt (style.kerning);
+ }
+
+ if (style.leading)
+ format.leading = parseInt (style.leading);
+
+ if (style.marginLeft)
+ format.leftMargin = parseInt (style.marginLeft);
+
+ if (style.letterSpacing)
+ format.letterSpacing = parseInt (style.letterSpacing);
+
+ if (style.marginRight)
+ format.rightMargin = parseInt (style.marginRight);
+
+ if (style.fontSize) {
+ var tmp = parseInt (style.fontSize);
+ if (tmp > 0)
+ format.size = tmp;
+ }
+
+ if (style.textDecoration == "underline") {
+ format.underline = true;
+ } else if (style.textDecoratio...