Difference between revisions of "Writer/Underline Color"

From Apache OpenOffice Wiki
Jump to: navigation, search
(Descriptions of Main Problems)
(Descriptions of Main Problems)
Line 30: Line 30:
 
{| class="wikitable"
 
{| class="wikitable"
 
|-
 
|-
!underline color export  
+
!underline color export
 +
!status 
 
|-
 
|-
 
| odt2odt
 
| odt2odt

Revision as of 14:50, 9 July 2012


Underline color in Writer

Underline color is not a standalone attribute in Writer. It belongs to the underline attribute, which is one of significant font effect attribute. The underline and underline color attributes can be accessed via the “Font Effects” pane in Writer, and the value range for underline color is the same as for the Color pane.

Descriptions of Main Problems

Currently, Apache OpenOffice 3.4 doesn't implement the support of underline color importing and exporting in WW8 filter, although it works well in ODF. Color of underlining text in documents imported from Word 2003 into Writer get the wrong color, e.g. black as default color in Writer, while in Word 2003 it would be any one. Color of Underlining text in documents exported from Writer to Word 2003 will be lost, and also set the color as default value black.

underline color import status
odt work
doc lost
docx lost
underline color export status
odt2odt work
odt2doc lost
doc2odt lost
doc2doc lost
docx2odt lost
docx2doc lost

Underline color in document model

The Underline and Underline color attributes can be accessed via the UNO API. Using the properties CharUnderline, CharUnderlineColor, and CharUnderlinelineHasColor in the service com.sun.star.style.CharacterProperties. These properties are described in the following table:

underlinecolor related properties
short CharUnderline This property contains the value for the character underline.
::com::sun::star::util::Color CharUnderlineColor This property contains the color of the underline for the characters.
boolean CharUnderlinelineHasColor This property specifies if the property CharUnderlineColor is used for an underline.


There is a Value container named SvxUnderlineItem for underline font effects which specify the underline color property
20120709070557!Svxunderlineitem_inherit.png

Underline color in specification

The underrline color attribute is stored using the following ODF property.

style:text-underline-color The value range is either font-color or a color value

The underline color attribute is stored using the following sprm property in MS Word bin format according its specification.

sprmCCvUI A COLORREF value that specifies the color of the text underline. When it comes to Office open XML

specification, element <w:u> and attribute <w:color> are used to specify the color for the underling text.

e.g. <w:u … w:color="auto" />

Support underline color in WW8 filter

Personal tools