WordsProcessing: Add support for 'align' attribute of paragraph tag when importing from HTML
At this point only styling through CSS is supported. The below code does not align the paragraph to the center
string import = "<html><body><p align=\"center\">centered??</p></body></html>";
RadFlowDocument document = provider.Import(import);