in Java SWT how to draw an animated dash lines on a cell

42 Views Asked by At

in Java SWT how to draw an animated dash lines on a caption (like in XL when you type control-C)

Animated box

dashOffset 
gc.getLineAttributes and gc.setLineAttributes
gc.setLineDash(new int[] {10,10});

I expect the same as on excel when you type ctrl-X : a frame with animated dashes

0

There are 0 best solutions below