Examples of HorizontalRelative


Examples of org.odftoolkit.simple.style.StyleTypeDefinitions.HorizontalRelative

     
      //validate
      Assert.assertEquals(HorizontalRelative.PARAGRAPH, frameStyleHandler.getHorizontalRelative());
     
      //
      HorizontalRelative hor = HorizontalRelative.enumValueOf("");
      Assert.assertEquals("page", hor.toString());
     
      HorizontalRelative hor1 = HorizontalRelative.enumValueOf("paragraph");
      Assert.assertEquals("paragraph", hor1.toString());
     
      HorizontalRelative hor2 = HorizontalRelative.enumValueOf("aaa");
      Assert.assertEquals("page", hor2.toString());
     
      //save
      //textDoc.save(ResourceUtilities.newTestOutputFile("textsample.odt"));

    } catch (Exception e) {
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.