1

I am sending some data into a system,from a .NET system, that uses the Adobe TextFlow format to render the output,

Is there a .NET Library that can help me out.

for reference the initial tag looks something like this.

<TextFlow columnCount="inherit" columnGap="inherit" columnWidth="inherit" direction="ltr" 
 fontLookup="embeddedCFF" lineBreak="inherit" paddingBottom="inherit" paddingLeft="inherit" 
 paddingRight="inherit" paddingTop="inherit" renderingMode="cff" verticalAlign="inherit" 
 whiteSpaceCollapse="preserve" xmlns="http://ns.adobe.com/textLayout/2008">
Bluephlame
  • 3,901
  • 4
  • 35
  • 51
  • How much control do you have over the flex app? Flex has some capabilities to translate from XML or HTML to TextFlow format...it'll be easier to create one of those if your display system allows this. – Brian May 27 '14 at 18:20
  • We have no control, It is a purchased app. – Bluephlame May 27 '14 at 23:35

1 Answers1

0

No, unfortunately there aren't any .NET libraries to output Adobe TextFlow markup.

However, since the TextFlow format is just a type of XML, you can use the .NET XML capabilities to create the markup.

Brian
  • 3,850
  • 3
  • 21
  • 37