Home
last modified time | relevance | path

Searched refs:shadowFormat (Results 1 – 4 of 4) sorted by relevance

/AOO42X/test/testuno/source/fvt/uno/sw/paragraph/
H A DParagraphShadow.java74 ShadowFormat shadowFormat=new ShadowFormat(); in testParagraphShadow_BottomRight() local
75 shadowFormat.Location=ShadowLocation.BOTTOM_RIGHT; in testParagraphShadow_BottomRight()
76 shadowFormat.ShadowWidth=101; in testParagraphShadow_BottomRight()
77 shadowFormat.Color=0x00FF00FF; in testParagraphShadow_BottomRight()
78 xCursorProps.setPropertyValue("ParaShadowFormat",shadowFormat); in testParagraphShadow_BottomRight()
130 ShadowFormat shadowFormat=new ShadowFormat(); in testParagraphShadow_BottomLeft() local
131 shadowFormat.Location=ShadowLocation.BOTTOM_LEFT; in testParagraphShadow_BottomLeft()
132 shadowFormat.ShadowWidth=101; in testParagraphShadow_BottomLeft()
133 shadowFormat.Color=0x00FF00FF; in testParagraphShadow_BottomLeft()
134 xCursorProps.setPropertyValue("ParaShadowFormat",shadowFormat); in testParagraphShadow_BottomLeft()
[all …]
/AOO42X/test/testuno/source/fvt/uno/sw/page/
H A DCheckShadowFormat.java65 private ShadowFormat shadowFormat = null; field in CheckShadowFormat
71 this.shadowFormat = new ShadowFormat(); in CheckShadowFormat()
72 this.shadowFormat.Location = ShadowLocation.fromInt(locationValue); in CheckShadowFormat()
73 this.shadowFormat.ShadowWidth = (short)width; in CheckShadowFormat()
74 this.shadowFormat.IsTransparent = isTransparent; in CheckShadowFormat()
75 this.shadowFormat.Color = color; in CheckShadowFormat()
121 SWUtil.setDefaultPageStyleProperty(xComponent, shadowFormatProperty, this.shadowFormat); in testFooterHeader()
145 …uals(preDescription + ":" + shadowFormatProperty + "-->Location",this.shadowFormat.Location.getVal… in compare()
147 if(!this.shadowFormat.Location.equals(ShadowLocation.NONE)){ in compare()
148 …preDescription + ":" + shadowFormatProperty + "-->Width",(double)this.shadowFormat.ShadowWidth, (d… in compare()
[all …]
/AOO42X/test/testuno/source/fvt/uno/sw/table/
H A DTableBasic.java513 …ShadowFormat[] shadowFormat=new ShadowFormat[] {new ShadowFormat(),new ShadowFormat(),new ShadowFo… in testSetTableShadow() local
514 shadowFormat[0].Location=ShadowLocation.BOTTOM_RIGHT; in testSetTableShadow()
515 shadowFormat[0].ShadowWidth=100; in testSetTableShadow()
516 shadowFormat[0].Color=0x00FF00FF; in testSetTableShadow()
517 shadowFormat[1].Location=ShadowLocation.BOTTOM_LEFT; in testSetTableShadow()
518 shadowFormat[1].ShadowWidth=100; in testSetTableShadow()
519 shadowFormat[1].Color=0x00FF00FF; in testSetTableShadow()
520 shadowFormat[2].Location=ShadowLocation.NONE; in testSetTableShadow()
521 shadowFormat[3].Location=ShadowLocation.TOP_LEFT; in testSetTableShadow()
522 shadowFormat[3].ShadowWidth=100; in testSetTableShadow()
[all …]
/AOO42X/test/testuno/source/fvt/uno/sw/frame/
H A DFrameShadow.java97 ShadowFormat shadowFormat=new ShadowFormat(); in testFrameShadow() local
98 shadowFormat.Color=shadowColor; in testFrameShadow()
99 shadowFormat.Location=shadowLocation; in testFrameShadow()
100 shadowFormat.ShadowWidth=shadowWidth; in testFrameShadow()
101 xTextFrameProps1.setPropertyValue("ShadowFormat",shadowFormat); in testFrameShadow()