*
* @return The structure element of this node.
*/
public PDColor getTextColor()
{
PDColor retval = null;
COSArray csValues = (COSArray)node.getDictionaryObject( COSName.C );
if( csValues == null )
{
csValues = new COSArray();
csValues.growToSize( 3, new COSFloat( 0 ) );
node.setItem( COSName.C, csValues );
}
retval = new PDColor(csValues.toFloatArray(), PDDeviceRGB.INSTANCE);
return retval;
}