Lines Matching refs:aLineDash

1131             ::com::sun::star::drawing::LineDash aLineDash;  in QueryValue()
1134 aLineDash.Style = (::com::sun::star::drawing::DashStyle)((sal_uInt16)rXD.GetDashStyle()); in QueryValue()
1135 aLineDash.Dots = rXD.GetDots(); in QueryValue()
1136 aLineDash.DotLen = rXD.GetDotLen(); in QueryValue()
1137 aLineDash.Dashes = rXD.GetDashes(); in QueryValue()
1138 aLineDash.DashLen = rXD.GetDashLen(); in QueryValue()
1139 aLineDash.Distance = rXD.GetDistance(); in QueryValue()
1146 aPropSeq[1].Value = uno::makeAny( aLineDash ); in QueryValue()
1163 ::com::sun::star::drawing::LineDash aLineDash; in QueryValue()
1165 aLineDash.Style = (::com::sun::star::drawing::DashStyle)((sal_uInt16)rXD.GetDashStyle()); in QueryValue()
1166 aLineDash.Dots = rXD.GetDots(); in QueryValue()
1167 aLineDash.DotLen = rXD.GetDotLen(); in QueryValue()
1168 aLineDash.Dashes = rXD.GetDashes(); in QueryValue()
1169 aLineDash.DashLen = rXD.GetDashLen(); in QueryValue()
1170 aLineDash.Distance = rXD.GetDistance(); in QueryValue()
1172 rVal <<= aLineDash; in QueryValue()
1234 ::com::sun::star::drawing::LineDash aLineDash; in PutValue()
1246 if ( aPropSeq[n].Value >>= aLineDash ) in PutValue()
1256 aXDash.SetDashStyle((XDashStyle)((sal_uInt16)(aLineDash.Style))); in PutValue()
1257 aXDash.SetDots(aLineDash.Dots); in PutValue()
1258 aXDash.SetDotLen(aLineDash.DotLen); in PutValue()
1259 aXDash.SetDashes(aLineDash.Dashes); in PutValue()
1260 aXDash.SetDashLen(aLineDash.DashLen); in PutValue()
1261 aXDash.SetDistance(aLineDash.Distance); in PutValue()
1286 ::com::sun::star::drawing::LineDash aLineDash; in PutValue()
1287 if(!(rVal >>= aLineDash)) in PutValue()
1292 aXDash.SetDashStyle((XDashStyle)((sal_uInt16)(aLineDash.Style))); in PutValue()
1293 aXDash.SetDots(aLineDash.Dots); in PutValue()
1294 aXDash.SetDotLen(aLineDash.DotLen); in PutValue()
1295 aXDash.SetDashes(aLineDash.Dashes); in PutValue()
1296 aXDash.SetDashLen(aLineDash.DashLen); in PutValue()
1297 aXDash.SetDistance(aLineDash.Distance); in PutValue()