* @noinspection StringConcatenation
*/
private void processReplacedContent(final RenderableReplacedContentBox node) throws IOException, ContentIOException
{
final RenderableReplacedContent rc = node.getContent();
final ReportAttributeMap attrs = node.getAttributes();
final long width = node.getWidth();
final long height = node.getHeight();
final long contentWidth = rc.getContentWidth();
final long contentHeight = rc.getContentHeight();
final StyleSheet styleSheet = node.getStyleSheet();
final Object rawObject = rc.getRawObject();
// We have to do three things here. First, we have to check what kind
// of content we deal with.
if (textExtractorHelper.processRenderableReplacedContent(attrs, styleSheet, width, height, contentWidth, contentHeight, rawObject))
{
result = true;