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