OLD | NEW |
| (Empty) |
1 // Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file | |
2 // for details. All rights reserved. Use of this source code is governed by a | |
3 // BSD-style license that can be found in the LICENSE file. | |
4 | |
5 // WARNING: Do not edit - generated code. | |
6 | |
7 class MarqueeElementWrappingImplementation extends ElementWrappingImplementation
implements MarqueeElement { | |
8 MarqueeElementWrappingImplementation._wrap(ptr) : super._wrap(ptr) {} | |
9 | |
10 String get behavior() { return _ptr.behavior; } | |
11 | |
12 void set behavior(String value) { _ptr.behavior = value; } | |
13 | |
14 String get bgColor() { return _ptr.bgColor; } | |
15 | |
16 void set bgColor(String value) { _ptr.bgColor = value; } | |
17 | |
18 String get direction() { return _ptr.direction; } | |
19 | |
20 void set direction(String value) { _ptr.direction = value; } | |
21 | |
22 String get height() { return _ptr.height; } | |
23 | |
24 void set height(String value) { _ptr.height = value; } | |
25 | |
26 int get hspace() { return _ptr.hspace; } | |
27 | |
28 void set hspace(int value) { _ptr.hspace = value; } | |
29 | |
30 int get loop() { return _ptr.loop; } | |
31 | |
32 void set loop(int value) { _ptr.loop = value; } | |
33 | |
34 int get scrollAmount() { return _ptr.scrollAmount; } | |
35 | |
36 void set scrollAmount(int value) { _ptr.scrollAmount = value; } | |
37 | |
38 int get scrollDelay() { return _ptr.scrollDelay; } | |
39 | |
40 void set scrollDelay(int value) { _ptr.scrollDelay = value; } | |
41 | |
42 bool get trueSpeed() { return _ptr.trueSpeed; } | |
43 | |
44 void set trueSpeed(bool value) { _ptr.trueSpeed = value; } | |
45 | |
46 int get vspace() { return _ptr.vspace; } | |
47 | |
48 void set vspace(int value) { _ptr.vspace = value; } | |
49 | |
50 String get width() { return _ptr.width; } | |
51 | |
52 void set width(String value) { _ptr.width = value; } | |
53 | |
54 void start() { | |
55 _ptr.start(); | |
56 return; | |
57 } | |
58 | |
59 void stop() { | |
60 _ptr.stop(); | |
61 return; | |
62 } | |
63 } | |
OLD | NEW |