Package com.sun.star.drawing

Examples of com.sun.star.drawing.LineDash


        log.println("Testing with custom Property tester");
        testProperty("LineStartName", LineTester) ;
    }
   
    public void _LineDash() {
        LineDash aLineDash = new LineDash();
        LineDash aLineDash2 = new LineDash();
        aLineDash.DashLen = 5;
        aLineDash2.DashLen = 1;
        PropertyValue[] firstValue = new PropertyValue[2];
        firstValue[0] = new PropertyValue();
        firstValue[0].Name = "Name";
View Full Code Here


        log.println("Testing with custom Property tester");
        testProperty("LineStartName", LineTester) ;
    }
   
    public void _LineDash() {
        LineDash aLineDash = new LineDash();
        LineDash aLineDash2 = new LineDash();
        aLineDash.DashLen = 5;
        aLineDash2.DashLen = 1;
        testProperty("LineDash",aLineDash,aLineDash2);
    }
View Full Code Here

      xPropSet.setPropertyValue( "FillGradient", aGradient );

      /* create a blue line with dashes and dots */
      xPropSet.setPropertyValue( "LineStyle",
                                       com.sun.star.drawing.LineStyle.DASH );
      LineDash aLineDash = new LineDash();
      aLineDash.Dots = 3;
      aLineDash.DotLen = 150;
      aLineDash.Dashes = 3;
      aLineDash.DashLen = 300;
      aLineDash.Distance = 150;
View Full Code Here

      xPropSet.setPropertyValue( "FillGradient", aGradient );

      /* create a blue line with dashes and dots */
      xPropSet.setPropertyValue( "LineStyle",
                                       com.sun.star.drawing.LineStyle.DASH );
      LineDash aLineDash = new LineDash();
      aLineDash.Dots = 3;
      aLineDash.DotLen = 150;
      aLineDash.Dashes = 3;
      aLineDash.DashLen = 300;
      aLineDash.Distance = 150;
View Full Code Here

        log.println("Testing with custom Property tester");
        testProperty("LineStartName", LineTester) ;
    }
   
    public void _LineDash() {
        LineDash aLineDash = new LineDash();
        LineDash aLineDash2 = new LineDash();
        aLineDash.DashLen = 5;
        aLineDash2.DashLen = 1;
        PropertyValue[] firstValue = new PropertyValue[2];
        firstValue[0] = new PropertyValue();
        firstValue[0].Name = "Name";
View Full Code Here

      xPropSet.setPropertyValue( "FillGradient", aGradient );

      /* create a blue line with dashes and dots */
      xPropSet.setPropertyValue( "LineStyle",
                                       com.sun.star.drawing.LineStyle.DASH );
      LineDash aLineDash = new LineDash();
      aLineDash.Dots = 3;
      aLineDash.DotLen = 150;
      aLineDash.Dashes = 3;
      aLineDash.DashLen = 300;
      aLineDash.Distance = 150;
View Full Code Here

      xPropSet.setPropertyValue( "FillGradient", aGradient );

      /* create a blue line with dashes and dots */
      xPropSet.setPropertyValue( "LineStyle",
                                       com.sun.star.drawing.LineStyle.DASH );
      LineDash aLineDash = new LineDash();
      aLineDash.Dots = 3;
      aLineDash.DotLen = 150;
      aLineDash.Dashes = 3;
      aLineDash.DashLen = 300;
      aLineDash.Distance = 150;
View Full Code Here

        log.println("Testing with custom Property tester");
        testProperty("LineStartName", LineTester) ;
    }
   
    public void _LineDash() {
        LineDash aLineDash = new LineDash();
        LineDash aLineDash2 = new LineDash();
        aLineDash.DashLen = 5;
        aLineDash2.DashLen = 1;
        PropertyValue[] firstValue = new PropertyValue[2];
        firstValue[0] = new PropertyValue();
        firstValue[0].Name = "Name";
View Full Code Here

        log.println("Testing with custom Property tester");
        testProperty("LineStartName", LineTester) ;
    }
   
    public void _LineDash() {
        LineDash aLineDash = new LineDash();
        LineDash aLineDash2 = new LineDash();
        aLineDash.DashLen = 5;
        aLineDash2.DashLen = 1;
        testProperty("LineDash",aLineDash,aLineDash2);
    }
View Full Code Here

TOP

Related Classes of com.sun.star.drawing.LineDash

Copyright © 2018 www.massapicom. 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.