Lines Matching refs:aLineDash
439 drawing::LineDash aLineDash; in getAny() local
441 aLineDash.Style = (::com::sun::star::drawing::DashStyle)((sal_uInt16)rXD.GetDashStyle()); in getAny()
442 aLineDash.Dots = rXD.GetDots(); in getAny()
443 aLineDash.DotLen = rXD.GetDotLen(); in getAny()
444 aLineDash.Dashes = rXD.GetDashes(); in getAny()
445 aLineDash.DashLen = rXD.GetDashLen(); in getAny()
446 aLineDash.Distance = rXD.GetDistance(); in getAny()
449 aAny <<= aLineDash; in getAny()
455 drawing::LineDash aLineDash; in getEntry() local
456 if(!(rAny >>= aLineDash)) in getEntry()
461 aXDash.SetDashStyle((XDashStyle)((sal_uInt16)(aLineDash.Style))); in getEntry()
462 aXDash.SetDots(aLineDash.Dots); in getEntry()
463 aXDash.SetDotLen(aLineDash.DotLen); in getEntry()
464 aXDash.SetDashes(aLineDash.Dashes); in getEntry()
465 aXDash.SetDashLen(aLineDash.DashLen); in getEntry()
466 aXDash.SetDistance(aLineDash.Distance); in getEntry()