Upgrade to ExtJS 4.0.2 - Released 06/09/2011
[extjs.git] / docs / output / Ext.draw.engine.Vml.js
1 Ext.data.JsonP.Ext_draw_engine_Vml({
2   "allMixins": [
3     "Ext.util.Observable"
4   ],
5   "deprecated": null,
6   "docauthor": null,
7   "members": {
8     "cfg": [
9       {
10         "type": "Number",
11         "deprecated": null,
12         "alias": null,
13         "protected": false,
14         "tagname": "cfg",
15         "href": "Surface.html#Ext-draw-Surface-cfg-height",
16         "shortDoc": "The height of this component in pixels (defaults to auto). ...",
17         "static": false,
18         "filename": "/mnt/ebs/nightly/git/SDK/platform/src/draw/Surface.js",
19         "private": false,
20         "name": "height",
21         "owner": "Ext.draw.Surface",
22         "doc": "<p>The height of this component in pixels (defaults to auto).\n<strong>Note</strong> to express this dimension as a percentage or offset see Ext.Component.anchor.</p>\n",
23         "linenr": 206,
24         "html_filename": "Surface.html"
25       },
26       {
27         "type": "Object",
28         "deprecated": null,
29         "alias": null,
30         "protected": false,
31         "tagname": "cfg",
32         "href": "Observable.html#Ext-util-Observable-cfg-listeners",
33         "shortDoc": "A config object containing one or more event handlers to be added to this object during initialization. ...",
34         "static": false,
35         "filename": "/mnt/ebs/nightly/git/SDK/platform/src/util/Observable.js",
36         "private": false,
37         "name": "listeners",
38         "owner": "Ext.util.Observable",
39         "doc": "<p>A config object containing one or more event handlers to be added to this object during initialization. This\nshould be a valid listeners config object as specified in the <a href=\"#/api/Ext.draw.engine.Vml-method-addListener\" rel=\"Ext.draw.engine.Vml-method-addListener\" class=\"docClass\">addListener</a> example for attaching multiple\nhandlers at once.</p>\n\n<p><strong>DOM events from ExtJS <a href=\"#/api/Ext.Component\" rel=\"Ext.Component\" class=\"docClass\">Components</a></strong></p>\n\n<p>While <em>some</em> ExtJs Component classes export selected DOM events (e.g. \"click\", \"mouseover\" etc), this is usually\nonly done when extra value can be added. For example the <a href=\"#/api/Ext.view.View\" rel=\"Ext.view.View\" class=\"docClass\">DataView</a>'s <strong><code><a href=\"#/api/Ext.view.View-event-itemclick\" rel=\"Ext.view.View-event-itemclick\" class=\"docClass\">itemclick</a></code></strong> event passing the node clicked on. To access DOM events directly from a\nchild element of a Component, we need to specify the <code>element</code> option to identify the Component property to add a\nDOM listener to:</p>\n\n<pre><code>new Ext.panel.Panel({\n    width: 400,\n    height: 200,\n    dockedItems: [{\n        xtype: 'toolbar'\n    }],\n    listeners: {\n        click: {\n            element: 'el', //bind to the underlying el property on the panel\n            fn: function(){ console.log('click el'); }\n        },\n        dblclick: {\n            element: 'body', //bind to the underlying body property on the panel\n            fn: function(){ console.log('dblclick body'); }\n        }\n    }\n});\n</code></pre>\n",
40         "linenr": 102,
41         "html_filename": "Observable.html"
42       },
43       {
44         "type": "Number",
45         "deprecated": null,
46         "alias": null,
47         "protected": false,
48         "tagname": "cfg",
49         "href": "Surface.html#Ext-draw-Surface-cfg-width",
50         "shortDoc": "The width of this component in pixels (defaults to auto). ...",
51         "static": false,
52         "filename": "/mnt/ebs/nightly/git/SDK/platform/src/draw/Surface.js",
53         "private": false,
54         "name": "width",
55         "owner": "Ext.draw.Surface",
56         "doc": "<p>The width of this component in pixels (defaults to auto).\n<strong>Note</strong> to express this dimension as a percentage or offset see Ext.Component.anchor.</p>\n",
57         "linenr": 211,
58         "html_filename": "Surface.html"
59       }
60     ],
61     "method": [
62       {
63         "deprecated": null,
64         "alias": null,
65         "href": "Surface.html#Ext-draw-Surface-method-constructor",
66         "tagname": "method",
67         "protected": false,
68         "shortDoc": "Creates new Surface. ...",
69         "static": false,
70         "params": [
71           {
72             "type": "Object",
73             "optional": true,
74             "doc": "<p>(optional) Config object.</p>\n",
75             "name": "config"
76           }
77         ],
78         "private": false,
79         "filename": "/mnt/ebs/nightly/git/SDK/platform/src/draw/Surface.js",
80         "doc": "<p>Creates new Surface.</p>\n",
81         "owner": "Ext.draw.Surface",
82         "name": "Vml",
83         "html_filename": "Surface.html",
84         "return": {
85           "type": "Object",
86           "doc": "\n"
87         },
88         "linenr": 223
89       },
90       {
91         "deprecated": null,
92         "alias": null,
93         "protected": false,
94         "tagname": "method",
95         "href": "Surface.html#Ext-draw-Surface-method-add",
96         "shortDoc": "Adds a Sprite to the surface. ...",
97         "static": false,
98         "filename": "/mnt/ebs/nightly/git/SDK/platform/src/draw/Surface.js",
99         "private": false,
100         "params": [
101
102         ],
103         "name": "add",
104         "owner": "Ext.draw.Surface",
105         "doc": "<p>Adds a Sprite to the surface. See <a href=\"#/api/Ext.draw.Sprite\" rel=\"Ext.draw.Sprite\" class=\"docClass\">Ext.draw.Sprite</a> for the configuration object to be\npassed into this method.</p>\n\n<p>For example:</p>\n\n<pre><code>drawComponent.surface.add({\n    type: 'circle',\n    fill: '#ffc',\n    radius: 100,\n    x: 100,\n    y: 100\n});\n</code></pre>\n",
106         "linenr": 485,
107         "return": {
108           "type": "void",
109           "doc": "\n"
110         },
111         "html_filename": "Surface.html"
112       },
113       {
114         "deprecated": null,
115         "alias": null,
116         "protected": false,
117         "tagname": "method",
118         "href": "Surface.html#Ext-draw-Surface-method-addCls",
119         "shortDoc": "Adds one or more CSS classes to the element. ...",
120         "static": false,
121         "filename": "/mnt/ebs/nightly/git/SDK/platform/src/draw/Surface.js",
122         "private": false,
123         "params": [
124           {
125             "type": "Object",
126             "optional": false,
127             "doc": "<p>The sprite to add the class to.</p>\n",
128             "name": "sprite"
129           },
130           {
131             "type": "String/[String]",
132             "optional": false,
133             "doc": "<p>The CSS class to add, or an array of classes</p>\n",
134             "name": "className"
135           }
136         ],
137         "name": "addCls",
138         "owner": "Ext.draw.Surface",
139         "doc": "<p>Adds one or more CSS classes to the element. Duplicate classes are automatically filtered out.</p>\n\n<p>For example:</p>\n\n<pre><code>drawComponent.surface.addCls(sprite, 'x-visible');\n</code></pre>\n",
140         "linenr": 273,
141         "return": {
142           "type": "void",
143           "doc": "\n"
144         },
145         "html_filename": "Surface.html"
146       },
147       {
148         "deprecated": null,
149         "alias": null,
150         "protected": false,
151         "tagname": "method",
152         "href": "Observable.html#Ext-util-Observable-method-addEvents",
153         "shortDoc": "Adds the specified events to the list of events which this Observable may fire. ...",
154         "static": false,
155         "filename": "/mnt/ebs/nightly/git/SDK/platform/src/util/Observable.js",
156         "private": false,
157         "params": [
158           {
159             "type": "Object/String",
160             "optional": false,
161             "doc": "<p>Either an object with event names as properties with a value of <code>true</code> or the first\nevent name string if multiple event names are being passed as separate parameters. Usage:</p>\n\n<pre><code>this.addEvents({\n    storeloaded: true,\n    storecleared: true\n});\n</code></pre>\n",
162             "name": "o"
163           },
164           {
165             "type": "String...",
166             "optional": false,
167             "doc": "<p>Optional additional event names if multiple event names are being passed as separate\nparameters. Usage:</p>\n\n<pre><code>this.addEvents('storeloaded', 'storecleared');\n</code></pre>\n",
168             "name": "more"
169           }
170         ],
171         "name": "addEvents",
172         "owner": "Ext.util.Observable",
173         "doc": "<p>Adds the specified events to the list of events which this Observable may fire.</p>\n",
174         "linenr": 494,
175         "return": {
176           "type": "void",
177           "doc": "\n"
178         },
179         "html_filename": "Observable.html"
180       },
181       {
182         "deprecated": null,
183         "alias": null,
184         "protected": false,
185         "tagname": "method",
186         "href": "Vml.html#Ext-draw-engine-Vml-method-addGradient",
187         "shortDoc": "Adds a definition to this Surface for a linear gradient. ...",
188         "static": false,
189         "filename": "/mnt/ebs/nightly/git/SDK/platform/src/draw/engine/Vml.js",
190         "private": false,
191         "params": [
192           {
193             "type": "Object",
194             "optional": false,
195             "doc": "\n",
196             "name": "gradient"
197           }
198         ],
199         "name": "addGradient",
200         "owner": "Ext.draw.engine.Vml",
201         "doc": "<p>Adds a definition to this Surface for a linear gradient. We convert the gradient definition\nto its corresponding VML attributes and store it for later use by individual sprites.</p>\n",
202         "linenr": 876,
203         "return": {
204           "type": "void",
205           "doc": "\n"
206         },
207         "html_filename": "Vml.html"
208       },
209       {
210         "deprecated": null,
211         "alias": null,
212         "protected": false,
213         "tagname": "method",
214         "href": "Observable.html#Ext-util-Observable-method-addListener",
215         "shortDoc": "Appends an event handler to this object. ...",
216         "static": false,
217         "filename": "/mnt/ebs/nightly/git/SDK/platform/src/util/Observable.js",
218         "private": false,
219         "params": [
220           {
221             "type": "String",
222             "optional": false,
223             "doc": "<p>The name of the event to listen for. May also be an object who's property names are\nevent names.</p>\n",
224             "name": "eventName"
225           },
226           {
227             "type": "Function",
228             "optional": false,
229             "doc": "<p>The method the event invokes.  Will be called with arguments given to\n<a href=\"#/api/Ext.draw.engine.Vml-method-fireEvent\" rel=\"Ext.draw.engine.Vml-method-fireEvent\" class=\"docClass\">fireEvent</a> plus the <code>options</code> parameter described below.</p>\n",
230             "name": "handler"
231           },
232           {
233             "type": "Object",
234             "optional": true,
235             "doc": "<p>(optional) The scope (<code>this</code> reference) in which the handler function is executed. <strong>If\nomitted, defaults to the object which fired the event.</strong></p>\n",
236             "name": "scope"
237           },
238           {
239             "type": "Object",
240             "optional": true,
241             "doc": "<p>(optional) An object containing handler configuration.</p>\n\n<p><strong>Note:</strong> Unlike in ExtJS 3.x, the options object will also be passed as the last argument to every event handler.</p>\n\n<p>This object may contain any of the following properties:</p>\n\n<ul>\n<li><p><strong>scope</strong> : Object</p>\n\n<p>The scope (<code>this</code> reference) in which the handler function is executed. <strong>If omitted, defaults to the object\nwhich fired the event.</strong></p></li>\n<li><p><strong>delay</strong> : Number</p>\n\n<p>The number of milliseconds to delay the invocation of the handler after the event fires.</p></li>\n<li><p><strong>single</strong> : Boolean</p>\n\n<p>True to add a handler to handle just the next firing of the event, and then remove itself.</p></li>\n<li><p><strong>buffer</strong> : Number</p>\n\n<p>Causes the handler to be scheduled to run in an <a href=\"#/api/Ext.util.DelayedTask\" rel=\"Ext.util.DelayedTask\" class=\"docClass\">Ext.util.DelayedTask</a> delayed by the specified number of\nmilliseconds. If the event fires again within that time, the original handler is <em>not</em> invoked, but the new\nhandler is scheduled in its place.</p></li>\n<li><p><strong>target</strong> : Observable</p>\n\n<p>Only call the handler if the event was fired on the target Observable, <em>not</em> if the event was bubbled up from a\nchild Observable.</p></li>\n<li><p><strong>element</strong> : String</p>\n\n<p><strong>This option is only valid for listeners bound to <a href=\"#/api/Ext.Component\" rel=\"Ext.Component\" class=\"docClass\">Components</a>.</strong> The name of a Component\nproperty which references an element to add a listener to.</p>\n\n<p>This option is useful during Component construction to add DOM event listeners to elements of\n<a href=\"#/api/Ext.Component\" rel=\"Ext.Component\" class=\"docClass\">Components</a> which will exist only after the Component is rendered.\nFor example, to add a click listener to a Panel's body:</p>\n\n<pre><code>new Ext.panel.Panel({\n    title: 'The title',\n    listeners: {\n        click: this.handlePanelClick,\n        element: 'body'\n    }\n});\n</code></pre></li>\n</ul>\n\n\n<p><strong>Combining Options</strong></p>\n\n<p>Using the options argument, it is possible to combine different types of listeners:</p>\n\n<p>A delayed, one-time listener.</p>\n\n<pre><code>myPanel.on('hide', this.handleClick, this, {\n    single: true,\n    delay: 100\n});\n</code></pre>\n\n<p><strong>Attaching multiple handlers in 1 call</strong></p>\n\n<p>The method also allows for a single argument to be passed which is a config object containing properties which\nspecify multiple events. For example:</p>\n\n<pre><code>myGridPanel.on({\n    cellClick: this.onCellClick,\n    mouseover: this.onMouseOver,\n    mouseout: this.onMouseOut,\n    scope: this // Important. Ensure \"this\" is correct during handler execution\n});\n</code></pre>\n\n<p>One can also specify options for each event handler separately:</p>\n\n<pre><code>myGridPanel.on({\n    cellClick: {fn: this.onCellClick, scope: this, single: true},\n    mouseover: {fn: panel.onMouseOver, scope: panel}\n});\n</code></pre>\n",
242             "name": "options"
243           }
244         ],
245         "name": "addListener",
246         "owner": "Ext.util.Observable",
247         "doc": "<p>Appends an event handler to this object.</p>\n",
248         "linenr": 278,
249         "return": {
250           "type": "void",
251           "doc": "\n"
252         },
253         "html_filename": "Observable.html"
254       },
255       {
256         "deprecated": null,
257         "alias": null,
258         "protected": false,
259         "tagname": "method",
260         "href": "Observable.html#Ext-util-Observable-method-addManagedListener",
261         "shortDoc": "Adds listeners to any Observable object (or Element) which are automatically removed when this Component is\ndestroyed. ...",
262         "static": false,
263         "filename": "/mnt/ebs/nightly/git/SDK/platform/src/util/Observable.js",
264         "private": false,
265         "params": [
266           {
267             "type": "Observable/Element",
268             "optional": false,
269             "doc": "<p>The item to which to add a listener/listeners.</p>\n",
270             "name": "item"
271           },
272           {
273             "type": "Object/String",
274             "optional": false,
275             "doc": "<p>The event name, or an object containing event name properties.</p>\n",
276             "name": "ename"
277           },
278           {
279             "type": "Function",
280             "optional": true,
281             "doc": "<p>(optional) If the <code>ename</code> parameter was an event name, this is the handler function.</p>\n",
282             "name": "fn"
283           },
284           {
285             "type": "Object",
286             "optional": true,
287             "doc": "<p>(optional) If the <code>ename</code> parameter was an event name, this is the scope (<code>this</code> reference)\nin which the handler function is executed.</p>\n",
288             "name": "scope"
289           },
290           {
291             "type": "Object",
292             "optional": true,
293             "doc": "<p>(optional) If the <code>ename</code> parameter was an event name, this is the\n<a href=\"#/api/Ext.util.Observable-method-addListener\" rel=\"Ext.util.Observable-method-addListener\" class=\"docClass\">addListener</a> options.</p>\n",
294             "name": "opt"
295           }
296         ],
297         "name": "addManagedListener",
298         "owner": "Ext.util.Observable",
299         "doc": "<p>Adds listeners to any Observable object (or Element) which are automatically removed when this Component is\ndestroyed.</p>\n",
300         "linenr": 156,
301         "return": {
302           "type": "void",
303           "doc": "\n"
304         },
305         "html_filename": "Observable.html"
306       },
307       {
308         "deprecated": null,
309         "alias": null,
310         "protected": false,
311         "tagname": "method",
312         "href": "Base3.html#Ext-Base-method-addStatics",
313         "shortDoc": "Add / override static properties of this class. ...",
314         "static": true,
315         "filename": "/mnt/ebs/nightly/git/SDK/platform/core/src/class/Base.js",
316         "private": false,
317         "params": [
318           {
319             "type": "Object",
320             "optional": false,
321             "doc": "\n",
322             "name": "members"
323           }
324         ],
325         "name": "addStatics",
326         "owner": "Ext.Base",
327         "doc": "<p>Add / override static properties of this class.</p>\n\n<pre><code>Ext.define('My.cool.Class', {\n    ...\n});\n\nMy.cool.Class.addStatics({\n    someProperty: 'someValue',      // My.cool.Class.someProperty = 'someValue'\n    method1: function() { ... },    // My.cool.Class.method1 = function() { ... };\n    method2: function() { ... }     // My.cool.Class.method2 = function() { ... };\n});\n</code></pre>\n",
328         "linenr": 388,
329         "return": {
330           "type": "Ext.Base",
331           "doc": "<p>this</p>\n"
332         },
333         "html_filename": "Base3.html"
334       },
335       {
336         "deprecated": null,
337         "alias": null,
338         "protected": false,
339         "tagname": "method",
340         "href": "Base3.html#Ext-Base-method-callOverridden",
341         "shortDoc": "Call the original method that was previously overridden with Ext.Base.override\n\nExt.define('My.Cat', {\n    constructo...",
342         "static": false,
343         "filename": "/mnt/ebs/nightly/git/SDK/platform/core/src/class/Base.js",
344         "private": false,
345         "params": [
346           {
347             "type": "Array/Arguments",
348             "optional": false,
349             "doc": "<p>The arguments, either an array or the <code>arguments</code> object</p>\n",
350             "name": "args"
351           }
352         ],
353         "name": "callOverridden",
354         "owner": "Ext.Base",
355         "doc": "<p>Call the original method that was previously overridden with <a href=\"#/api/Ext.Base-method-override\" rel=\"Ext.Base-method-override\" class=\"docClass\">Ext.Base.override</a></p>\n\n<pre><code>Ext.define('My.Cat', {\n    constructor: function() {\n        alert(\"I'm a cat!\");\n\n        return this;\n    }\n});\n\nMy.Cat.override({\n    constructor: function() {\n        alert(\"I'm going to be a cat!\");\n\n        var instance = this.callOverridden();\n\n        alert(\"Meeeeoooowwww\");\n\n        return instance;\n    }\n});\n\nvar kitty = new My.Cat(); // alerts \"I'm going to be a cat!\"\n                          // alerts \"I'm a cat!\"\n                          // alerts \"Meeeeoooowwww\"\n</code></pre>\n",
356         "linenr": 269,
357         "return": {
358           "type": "Mixed",
359           "doc": "<p>Returns the result after calling the overridden method</p>\n"
360         },
361         "html_filename": "Base3.html"
362       },
363       {
364         "deprecated": null,
365         "alias": null,
366         "protected": true,
367         "tagname": "method",
368         "href": "Base3.html#Ext-Base-method-callParent",
369         "shortDoc": "Call the parent's overridden method. ...",
370         "static": false,
371         "filename": "/mnt/ebs/nightly/git/SDK/platform/core/src/class/Base.js",
372         "private": false,
373         "params": [
374           {
375             "type": "Array/Arguments",
376             "optional": false,
377             "doc": "<p>The arguments, either an array or the <code>arguments</code> object\nfrom the current method, for example: <code>this.callParent(arguments)</code></p>\n",
378             "name": "args"
379           }
380         ],
381         "name": "callParent",
382         "owner": "Ext.Base",
383         "doc": "<p>Call the parent's overridden method. For example:</p>\n\n<pre><code>Ext.define('My.own.A', {\n    constructor: function(test) {\n        alert(test);\n    }\n});\n\nExt.define('My.own.B', {\n    extend: 'My.own.A',\n\n    constructor: function(test) {\n        alert(test);\n\n        this.callParent([test + 1]);\n    }\n});\n\nExt.define('My.own.C', {\n    extend: 'My.own.B',\n\n    constructor: function() {\n        alert(\"Going to call parent's overriden constructor...\");\n\n        this.callParent(arguments);\n    }\n});\n\nvar a = new My.own.A(1); // alerts '1'\nvar b = new My.own.B(1); // alerts '1', then alerts '2'\nvar c = new My.own.C(2); // alerts \"Going to call parent's overriden constructor...\"\n                         // alerts '2', then alerts '3'\n</code></pre>\n",
384         "linenr": 124,
385         "return": {
386           "type": "Mixed",
387           "doc": "<p>Returns the result from the superclass' method</p>\n"
388         },
389         "html_filename": "Base3.html"
390       },
391       {
392         "deprecated": null,
393         "alias": null,
394         "protected": false,
395         "tagname": "method",
396         "href": "Observable.html#Ext-util-Observable-method-capture",
397         "shortDoc": "Starts capture on the specified Observable. ...",
398         "static": true,
399         "filename": "/mnt/ebs/nightly/git/SDK/platform/src/util/Observable.js",
400         "private": false,
401         "params": [
402           {
403             "type": "Observable",
404             "optional": false,
405             "doc": "<p>The Observable to capture events from.</p>\n",
406             "name": "o"
407           },
408           {
409             "type": "Function",
410             "optional": false,
411             "doc": "<p>The function to call when an event is fired.</p>\n",
412             "name": "fn"
413           },
414           {
415             "type": "Object",
416             "optional": true,
417             "doc": "<p>(optional) The scope (<code>this</code> reference) in which the function is executed. Defaults to\nthe Observable firing the event.</p>\n",
418             "name": "scope"
419           }
420         ],
421         "name": "capture",
422         "owner": "Ext.util.Observable",
423         "doc": "<p>Starts capture on the specified Observable. All events will be passed to the supplied function with the event\nname + standard signature of the event <strong>before</strong> the event is fired. If the supplied function returns false,\nthe event will not fire.</p>\n",
424         "linenr": 54,
425         "return": {
426           "type": "void",
427           "doc": "\n"
428         },
429         "html_filename": "Observable.html"
430       },
431       {
432         "deprecated": null,
433         "alias": null,
434         "protected": false,
435         "tagname": "method",
436         "href": "Observable.html#Ext-util-Observable-method-clearListeners",
437         "shortDoc": "Removes all listeners for this object including the managed listeners ...",
438         "static": false,
439         "filename": "/mnt/ebs/nightly/git/SDK/platform/src/util/Observable.js",
440         "private": false,
441         "params": [
442
443         ],
444         "name": "clearListeners",
445         "owner": "Ext.util.Observable",
446         "doc": "<p>Removes all listeners for this object including the managed listeners</p>\n",
447         "linenr": 425,
448         "return": {
449           "type": "void",
450           "doc": "\n"
451         },
452         "html_filename": "Observable.html"
453       },
454       {
455         "deprecated": null,
456         "alias": null,
457         "protected": false,
458         "tagname": "method",
459         "href": "Observable.html#Ext-util-Observable-method-clearManagedListeners",
460         "shortDoc": "Removes all managed listeners for this object. ...",
461         "static": false,
462         "filename": "/mnt/ebs/nightly/git/SDK/platform/src/util/Observable.js",
463         "private": false,
464         "params": [
465
466         ],
467         "name": "clearManagedListeners",
468         "owner": "Ext.util.Observable",
469         "doc": "<p>Removes all managed listeners for this object.</p>\n",
470         "linenr": 454,
471         "return": {
472           "type": "void",
473           "doc": "\n"
474         },
475         "html_filename": "Observable.html"
476       },
477       {
478         "deprecated": null,
479         "alias": null,
480         "protected": false,
481         "tagname": "method",
482         "href": "Surface.html#Ext-draw-Surface-method-create",
483         "shortDoc": "Creates and returns a new concrete Surface instance appropriate for the current environment. ...",
484         "static": true,
485         "filename": "/mnt/ebs/nightly/git/SDK/platform/src/draw/Surface.js",
486         "private": false,
487         "params": [
488           {
489             "type": "Object",
490             "optional": false,
491             "doc": "<p>Initial configuration for the Surface instance</p>\n",
492             "name": "config"
493           },
494           {
495             "type": "[String]",
496             "optional": false,
497             "doc": "<p>Optional order of implementations to use; the first one that is\navailable in the current environment will be used. Defaults to <code>['Svg', 'Vml']</code>.</p>\n",
498             "name": "enginePriority"
499           }
500         ],
501         "name": "create",
502         "owner": "Ext.draw.Surface",
503         "doc": "<p>Creates and returns a new concrete Surface instance appropriate for the current environment.</p>\n",
504         "linenr": 137,
505         "return": {
506           "type": "Object",
507           "doc": "<p>The created Surface or false.</p>\n"
508         },
509         "html_filename": "Surface.html"
510       },
511       {
512         "deprecated": null,
513         "alias": null,
514         "protected": false,
515         "tagname": "method",
516         "href": "Base3.html#Ext-Base-method-createAlias",
517         "shortDoc": "Create aliases for existing prototype methods. ...",
518         "static": true,
519         "filename": "/mnt/ebs/nightly/git/SDK/platform/core/src/class/Base.js",
520         "private": false,
521         "params": [
522           {
523             "type": "String/Object",
524             "optional": false,
525             "doc": "<p>The new method name, or an object to set multiple aliases. See\n<a href=\"#/api/Ext.Function-method-flexSetter\" rel=\"Ext.Function-method-flexSetter\" class=\"docClass\">flexSetter</a></p>\n",
526             "name": "alias"
527           },
528           {
529             "type": "String/Object",
530             "optional": false,
531             "doc": "<p>The original method name</p>\n",
532             "name": "origin"
533           }
534         ],
535         "name": "createAlias",
536         "owner": "Ext.Base",
537         "doc": "<p>Create aliases for existing prototype methods. Example:</p>\n\n<pre><code>Ext.define('My.cool.Class', {\n    method1: function() { ... },\n    method2: function() { ... }\n});\n\nvar test = new My.cool.Class();\n\nMy.cool.Class.createAlias({\n    method3: 'method1',\n    method4: 'method2'\n});\n\ntest.method3(); // test.method1()\n\nMy.cool.Class.createAlias('method5', 'method3');\n\ntest.method5(); // test.method3() -&gt; test.method1()\n</code></pre>\n",
538         "linenr": 648,
539         "return": {
540           "type": "void",
541           "doc": "\n"
542         },
543         "html_filename": "Base3.html"
544       },
545       {
546         "deprecated": null,
547         "alias": null,
548         "protected": false,
549         "tagname": "method",
550         "href": "Surface.html#Ext-draw-Surface-method-destroy",
551         "shortDoc": "Destroys the surface. ...",
552         "static": false,
553         "filename": "/mnt/ebs/nightly/git/SDK/platform/src/draw/Surface.js",
554         "private": false,
555         "params": [
556
557         ],
558         "name": "destroy",
559         "owner": "Ext.draw.Surface",
560         "doc": "<p>Destroys the surface. This is done by removing all components from it and\nalso removing its reference to a DOM element.</p>\n\n<p>For example:</p>\n\n<pre><code> drawComponent.surface.destroy();\n</code></pre>\n",
561         "linenr": 835,
562         "return": {
563           "type": "void",
564           "doc": "\n"
565         },
566         "html_filename": "Surface.html"
567       },
568       {
569         "deprecated": null,
570         "alias": null,
571         "protected": false,
572         "tagname": "method",
573         "href": "Observable.html#Ext-util-Observable-method-enableBubble",
574         "shortDoc": "Enables events fired by this Observable to bubble up an owner hierarchy by calling this.getBubbleTarget() if\npresent. ...",
575         "static": false,
576         "filename": "/mnt/ebs/nightly/git/SDK/platform/src/util/Observable.js",
577         "private": false,
578         "params": [
579           {
580             "type": "String/[String]",
581             "optional": false,
582             "doc": "<p>The event name to bubble, or an Array of event names.</p>\n",
583             "name": "events"
584           }
585         ],
586         "name": "enableBubble",
587         "owner": "Ext.util.Observable",
588         "doc": "<p>Enables events fired by this Observable to bubble up an owner hierarchy by calling <code>this.getBubbleTarget()</code> if\npresent. There is no implementation in the Observable base class.</p>\n\n<p>This is commonly used by Ext.Components to bubble events to owner Containers.\nSee <a href=\"#/api/Ext.Component-method-getBubbleTarget\" rel=\"Ext.Component-method-getBubbleTarget\" class=\"docClass\">Ext.Component.getBubbleTarget</a>. The default implementation in <a href=\"#/api/Ext.Component\" rel=\"Ext.Component\" class=\"docClass\">Ext.Component</a> returns the\nComponent's immediate owner. But if a known target is required, this can be overridden to access the\nrequired target more quickly.</p>\n\n<p>Example:</p>\n\n<pre><code>Ext.override(Ext.form.field.Base, {\n    //  Add functionality to Field's initComponent to enable the change event to bubble\n    initComponent : Ext.Function.createSequence(Ext.form.field.Base.prototype.initComponent, function() {\n        this.enableBubble('change');\n    }),\n\n    //  We know that we want Field's events to bubble directly to the FormPanel.\n    getBubbleTarget : function() {\n        if (!this.formPanel) {\n            this.formPanel = this.findParentByType('form');\n        }\n        return this.formPanel;\n    }\n});\n\nvar myForm = new Ext.formPanel({\n    title: 'User Details',\n    items: [{\n        ...\n    }],\n    listeners: {\n        change: function() {\n            // Title goes red if form has been modified.\n            myForm.header.setStyle('color', 'red');\n        }\n    }\n});\n</code></pre>\n",
589         "linenr": 609,
590         "return": {
591           "type": "void",
592           "doc": "\n"
593         },
594         "html_filename": "Observable.html"
595       },
596       {
597         "deprecated": null,
598         "alias": null,
599         "protected": false,
600         "tagname": "method",
601         "href": "Observable.html#Ext-util-Observable-method-fireEvent",
602         "shortDoc": "Fires the specified event with the passed parameters (minus the event name, plus the options object passed\nto addList...",
603         "static": false,
604         "filename": "/mnt/ebs/nightly/git/SDK/platform/src/util/Observable.js",
605         "private": false,
606         "params": [
607           {
608             "type": "String",
609             "optional": false,
610             "doc": "<p>The name of the event to fire.</p>\n",
611             "name": "eventName"
612           },
613           {
614             "type": "Object...",
615             "optional": false,
616             "doc": "<p>Variable number of parameters are passed to handlers.</p>\n",
617             "name": "args"
618           }
619         ],
620         "name": "fireEvent",
621         "owner": "Ext.util.Observable",
622         "doc": "<p>Fires the specified event with the passed parameters (minus the event name, plus the <code>options</code> object passed\nto <a href=\"#/api/Ext.draw.engine.Vml-method-addListener\" rel=\"Ext.draw.engine.Vml-method-addListener\" class=\"docClass\">addListener</a>).</p>\n\n<p>An event may be set to bubble up an Observable parent hierarchy (See <a href=\"#/api/Ext.Component-method-getBubbleTarget\" rel=\"Ext.Component-method-getBubbleTarget\" class=\"docClass\">Ext.Component.getBubbleTarget</a>) by\ncalling <a href=\"#/api/Ext.draw.engine.Vml-method-enableBubble\" rel=\"Ext.draw.engine.Vml-method-enableBubble\" class=\"docClass\">enableBubble</a>.</p>\n",
623         "linenr": 233,
624         "return": {
625           "type": "Boolean",
626           "doc": "<p>returns false if any of the handlers return false otherwise it returns true.</p>\n"
627         },
628         "html_filename": "Observable.html"
629       },
630       {
631         "deprecated": null,
632         "alias": null,
633         "protected": false,
634         "tagname": "method",
635         "href": "Surface.html#Ext-draw-Surface-method-getGroup",
636         "shortDoc": "Returns a new group or an existent group associated with the current surface. ...",
637         "static": false,
638         "filename": "/mnt/ebs/nightly/git/SDK/platform/src/draw/Surface.js",
639         "private": false,
640         "params": [
641           {
642             "type": "String",
643             "optional": false,
644             "doc": "<p>The unique identifier of the group.</p>\n",
645             "name": "id"
646           }
647         ],
648         "name": "getGroup",
649         "owner": "Ext.draw.Surface",
650         "doc": "<p>Returns a new group or an existent group associated with the current surface.\nThe group returned is a <a href=\"#/api/Ext.draw.CompositeSprite\" rel=\"Ext.draw.CompositeSprite\" class=\"docClass\">Ext.draw.CompositeSprite</a> group.</p>\n\n<p>For example:</p>\n\n<pre><code>var spriteGroup = drawComponent.surface.getGroup('someGroupId');\n</code></pre>\n",
651         "linenr": 768,
652         "return": {
653           "type": "Object",
654           "doc": "<p>The <a href=\"#/api/Ext.draw.CompositeSprite\" rel=\"Ext.draw.CompositeSprite\" class=\"docClass\">Ext.draw.CompositeSprite</a>.</p>\n"
655         },
656         "html_filename": "Surface.html"
657       },
658       {
659         "deprecated": null,
660         "alias": null,
661         "protected": false,
662         "tagname": "method",
663         "href": "Surface.html#Ext-draw-Surface-method-getId",
664         "shortDoc": "Retrieves the id of this component. ...",
665         "static": false,
666         "filename": "/mnt/ebs/nightly/git/SDK/platform/src/draw/Surface.js",
667         "private": false,
668         "params": [
669
670         ],
671         "name": "getId",
672         "owner": "Ext.draw.Surface",
673         "doc": "<p>Retrieves the id of this component.\nWill autogenerate an id if one has not already been set.</p>\n",
674         "linenr": 827,
675         "return": {
676           "type": "void",
677           "doc": "\n"
678         },
679         "html_filename": "Surface.html"
680       },
681       {
682         "deprecated": null,
683         "alias": null,
684         "protected": false,
685         "tagname": "method",
686         "href": "Base3.html#Ext-Base-method-getName",
687         "shortDoc": "Get the current class' name in string format. ...",
688         "static": false,
689         "filename": "/mnt/ebs/nightly/git/SDK/platform/core/src/class/Base.js",
690         "private": false,
691         "params": [
692
693         ],
694         "name": "getName",
695         "owner": "Ext.Base",
696         "doc": "<p>Get the current class' name in string format.</p>\n\n<pre><code>Ext.define('My.cool.Class', {\n    constructor: function() {\n        alert(this.self.getName()); // alerts 'My.cool.Class'\n    }\n});\n\nMy.cool.Class.getName(); // 'My.cool.Class'\n</code></pre>\n",
697         "linenr": 631,
698         "return": {
699           "type": "String",
700           "doc": "<p>className</p>\n"
701         },
702         "html_filename": "Base3.html"
703       },
704       {
705         "deprecated": null,
706         "alias": null,
707         "protected": false,
708         "tagname": "method",
709         "href": "Observable.html#Ext-util-Observable-method-hasListener",
710         "shortDoc": "Checks to see if this object has any listeners for a specified event ...",
711         "static": false,
712         "filename": "/mnt/ebs/nightly/git/SDK/platform/src/util/Observable.js",
713         "private": false,
714         "params": [
715           {
716             "type": "String",
717             "optional": false,
718             "doc": "<p>The name of the event to check for</p>\n",
719             "name": "eventName"
720           }
721         ],
722         "name": "hasListener",
723         "owner": "Ext.util.Observable",
724         "doc": "<p>Checks to see if this object has any listeners for a specified event</p>\n",
725         "linenr": 530,
726         "return": {
727           "type": "Boolean",
728           "doc": "<p>True if the event is being listened for, else false</p>\n"
729         },
730         "html_filename": "Observable.html"
731       },
732       {
733         "deprecated": null,
734         "alias": null,
735         "protected": false,
736         "tagname": "method",
737         "href": "Base3.html#Ext-Base-method-implement",
738         "shortDoc": "Add methods / properties to the prototype of this class. ...",
739         "static": true,
740         "filename": "/mnt/ebs/nightly/git/SDK/platform/core/src/class/Base.js",
741         "private": false,
742         "params": [
743           {
744             "type": "Object",
745             "optional": false,
746             "doc": "\n",
747             "name": "members"
748           }
749         ],
750         "name": "implement",
751         "owner": "Ext.Base",
752         "doc": "<p>Add methods / properties to the prototype of this class.</p>\n\n<pre><code>Ext.define('My.awesome.Cat', {\n    constructor: function() {\n        ...\n    }\n});\n\n My.awesome.Cat.implement({\n     meow: function() {\n        alert('Meowww...');\n     }\n });\n\n var kitty = new My.awesome.Cat;\n kitty.meow();\n</code></pre>\n",
753         "linenr": 415,
754         "return": {
755           "type": "void",
756           "doc": "\n"
757         },
758         "html_filename": "Base3.html"
759       },
760       {
761         "deprecated": null,
762         "alias": null,
763         "protected": true,
764         "tagname": "method",
765         "href": "Base3.html#Ext-Base-method-initConfig",
766         "shortDoc": "Initialize configuration for this class. ...",
767         "static": false,
768         "filename": "/mnt/ebs/nightly/git/SDK/platform/core/src/class/Base.js",
769         "private": false,
770         "params": [
771           {
772             "type": "Object",
773             "optional": false,
774             "doc": "\n",
775             "name": "config"
776           }
777         ],
778         "name": "initConfig",
779         "owner": "Ext.Base",
780         "doc": "<p>Initialize configuration for this class. a typical example:</p>\n\n<pre><code>Ext.define('My.awesome.Class', {\n    // The default config\n    config: {\n        name: 'Awesome',\n        isAwesome: true\n    },\n\n    constructor: function(config) {\n        this.initConfig(config);\n\n        return this;\n    }\n});\n\nvar awesome = new My.awesome.Class({\n    name: 'Super Awesome'\n});\n\nalert(awesome.getName()); // 'Super Awesome'\n</code></pre>\n",
781         "linenr": 63,
782         "return": {
783           "type": "Object",
784           "doc": "<p>mixins The mixin prototypes as key - value pairs</p>\n"
785         },
786         "html_filename": "Base3.html"
787       },
788       {
789         "deprecated": null,
790         "alias": {
791           "tagname": "alias",
792           "cls": "Ext.util.Observable",
793           "doc": null,
794           "owner": "addManagedListener"
795         },
796         "protected": false,
797         "tagname": "method",
798         "href": "Observable.html#Ext-util-Observable-method-mon",
799         "shortDoc": "Shorthand for addManagedListener. ...",
800         "static": false,
801         "filename": "/mnt/ebs/nightly/git/SDK/platform/src/util/Observable.js",
802         "private": false,
803         "params": [
804           {
805             "type": "Observable/Element",
806             "optional": false,
807             "doc": "<p>The item to which to add a listener/listeners.</p>\n",
808             "name": "item"
809           },
810           {
811             "type": "Object/String",
812             "optional": false,
813             "doc": "<p>The event name, or an object containing event name properties.</p>\n",
814             "name": "ename"
815           },
816           {
817             "type": "Function",
818             "optional": true,
819             "doc": "<p>(optional) If the <code>ename</code> parameter was an event name, this is the handler function.</p>\n",
820             "name": "fn"
821           },
822           {
823             "type": "Object",
824             "optional": true,
825             "doc": "<p>(optional) If the <code>ename</code> parameter was an event name, this is the scope (<code>this</code> reference)\nin which the handler function is executed.</p>\n",
826             "name": "scope"
827           },
828           {
829             "type": "Object",
830             "optional": true,
831             "doc": "<p>(optional) If the <code>ename</code> parameter was an event name, this is the\n<a href=\"#/api/Ext.util.Observable-method-addListener\" rel=\"Ext.util.Observable-method-addListener\" class=\"docClass\">addListener</a> options.</p>\n",
832             "name": "opt"
833           }
834         ],
835         "name": "mon",
836         "owner": "Ext.util.Observable",
837         "doc": "<p>Shorthand for <a href=\"#/api/Ext.draw.engine.Vml-method-addManagedListener\" rel=\"Ext.draw.engine.Vml-method-addManagedListener\" class=\"docClass\">addManagedListener</a>.</p>\n\n<p>Adds listeners to any Observable object (or Element) which are automatically removed when this Component is\ndestroyed.</p>\n",
838         "linenr": 681,
839         "return": {
840           "type": "void",
841           "doc": "\n"
842         },
843         "html_filename": "Observable.html"
844       },
845       {
846         "deprecated": null,
847         "alias": {
848           "tagname": "alias",
849           "cls": "Ext.util.Observable",
850           "doc": null,
851           "owner": "removeManagedListener"
852         },
853         "protected": false,
854         "tagname": "method",
855         "href": "Observable.html#Ext-util-Observable-method-mun",
856         "shortDoc": "Shorthand for removeManagedListener. ...",
857         "static": false,
858         "filename": "/mnt/ebs/nightly/git/SDK/platform/src/util/Observable.js",
859         "private": false,
860         "params": [
861           {
862             "type": "Observable|Element",
863             "optional": false,
864             "doc": "<p>The item from which to remove a listener/listeners.</p>\n",
865             "name": "item"
866           },
867           {
868             "type": "Object|String",
869             "optional": false,
870             "doc": "<p>The event name, or an object containing event name properties.</p>\n",
871             "name": "ename"
872           },
873           {
874             "type": "Function",
875             "optional": false,
876             "doc": "<p>Optional. If the <code>ename</code> parameter was an event name, this is the handler function.</p>\n",
877             "name": "fn"
878           },
879           {
880             "type": "Object",
881             "optional": false,
882             "doc": "<p>Optional. If the <code>ename</code> parameter was an event name, this is the scope (<code>this</code> reference)\nin which the handler function is executed.</p>\n",
883             "name": "scope"
884           }
885         ],
886         "name": "mun",
887         "owner": "Ext.util.Observable",
888         "doc": "<p>Shorthand for <a href=\"#/api/Ext.draw.engine.Vml-method-removeManagedListener\" rel=\"Ext.draw.engine.Vml-method-removeManagedListener\" class=\"docClass\">removeManagedListener</a>.</p>\n\n<p>Removes listeners that were added by the <a href=\"#/api/Ext.draw.engine.Vml-method-mon\" rel=\"Ext.draw.engine.Vml-method-mon\" class=\"docClass\">mon</a> method.</p>\n",
889         "linenr": 687,
890         "return": {
891           "type": "void",
892           "doc": "\n"
893         },
894         "html_filename": "Observable.html"
895       },
896       {
897         "deprecated": null,
898         "alias": null,
899         "protected": false,
900         "tagname": "method",
901         "href": "Observable.html#Ext-util-Observable-method-observe",
902         "shortDoc": "Sets observability on the passed class constructor. ...",
903         "static": true,
904         "filename": "/mnt/ebs/nightly/git/SDK/platform/src/util/Observable.js",
905         "private": false,
906         "params": [
907           {
908             "type": "Function",
909             "optional": false,
910             "doc": "<p>The class constructor to make observable.</p>\n",
911             "name": "c"
912           },
913           {
914             "type": "Object",
915             "optional": false,
916             "doc": "<p>An object containing a series of listeners to add. See <a href=\"#/api/Ext.draw.engine.Vml-method-addListener\" rel=\"Ext.draw.engine.Vml-method-addListener\" class=\"docClass\">addListener</a>.</p>\n",
917             "name": "listeners"
918           }
919         ],
920         "name": "observe",
921         "owner": "Ext.util.Observable",
922         "doc": "<p>Sets observability on the passed class constructor.</p>\n\n<p>This makes any event fired on any instance of the passed class also fire a single event through\nthe <strong>class</strong> allowing for central handling of events on many instances at once.</p>\n\n<p>Usage:</p>\n\n<pre><code>Ext.util.Observable.observe(Ext.data.Connection);\nExt.data.Connection.on('beforerequest', function(con, options) {\n    console.log('Ajax request made to ' + options.url);\n});\n</code></pre>\n",
923         "linenr": 69,
924         "return": {
925           "type": "void",
926           "doc": "\n"
927         },
928         "html_filename": "Observable.html"
929       },
930       {
931         "deprecated": null,
932         "alias": {
933           "tagname": "alias",
934           "cls": "Ext.util.Observable",
935           "doc": null,
936           "owner": "addListener"
937         },
938         "protected": false,
939         "tagname": "method",
940         "href": "Observable.html#Ext-util-Observable-method-on",
941         "shortDoc": "Shorthand for addListener. ...",
942         "static": false,
943         "filename": "/mnt/ebs/nightly/git/SDK/platform/src/util/Observable.js",
944         "private": false,
945         "params": [
946           {
947             "type": "String",
948             "optional": false,
949             "doc": "<p>The name of the event to listen for. May also be an object who's property names are\nevent names.</p>\n",
950             "name": "eventName"
951           },
952           {
953             "type": "Function",
954             "optional": false,
955             "doc": "<p>The method the event invokes.  Will be called with arguments given to\n<a href=\"#/api/Ext.draw.engine.Vml-method-fireEvent\" rel=\"Ext.draw.engine.Vml-method-fireEvent\" class=\"docClass\">fireEvent</a> plus the <code>options</code> parameter described below.</p>\n",
956             "name": "handler"
957           },
958           {
959             "type": "Object",
960             "optional": true,
961             "doc": "<p>(optional) The scope (<code>this</code> reference) in which the handler function is executed. <strong>If\nomitted, defaults to the object which fired the event.</strong></p>\n",
962             "name": "scope"
963           },
964           {
965             "type": "Object",
966             "optional": true,
967             "doc": "<p>(optional) An object containing handler configuration.</p>\n\n<p><strong>Note:</strong> Unlike in ExtJS 3.x, the options object will also be passed as the last argument to every event handler.</p>\n\n<p>This object may contain any of the following properties:</p>\n\n<ul>\n<li><p><strong>scope</strong> : Object</p>\n\n<p>The scope (<code>this</code> reference) in which the handler function is executed. <strong>If omitted, defaults to the object\nwhich fired the event.</strong></p></li>\n<li><p><strong>delay</strong> : Number</p>\n\n<p>The number of milliseconds to delay the invocation of the handler after the event fires.</p></li>\n<li><p><strong>single</strong> : Boolean</p>\n\n<p>True to add a handler to handle just the next firing of the event, and then remove itself.</p></li>\n<li><p><strong>buffer</strong> : Number</p>\n\n<p>Causes the handler to be scheduled to run in an <a href=\"#/api/Ext.util.DelayedTask\" rel=\"Ext.util.DelayedTask\" class=\"docClass\">Ext.util.DelayedTask</a> delayed by the specified number of\nmilliseconds. If the event fires again within that time, the original handler is <em>not</em> invoked, but the new\nhandler is scheduled in its place.</p></li>\n<li><p><strong>target</strong> : Observable</p>\n\n<p>Only call the handler if the event was fired on the target Observable, <em>not</em> if the event was bubbled up from a\nchild Observable.</p></li>\n<li><p><strong>element</strong> : String</p>\n\n<p><strong>This option is only valid for listeners bound to <a href=\"#/api/Ext.Component\" rel=\"Ext.Component\" class=\"docClass\">Components</a>.</strong> The name of a Component\nproperty which references an element to add a listener to.</p>\n\n<p>This option is useful during Component construction to add DOM event listeners to elements of\n<a href=\"#/api/Ext.Component\" rel=\"Ext.Component\" class=\"docClass\">Components</a> which will exist only after the Component is rendered.\nFor example, to add a click listener to a Panel's body:</p>\n\n<pre><code>new Ext.panel.Panel({\n    title: 'The title',\n    listeners: {\n        click: this.handlePanelClick,\n        element: 'body'\n    }\n});\n</code></pre></li>\n</ul>\n\n\n<p><strong>Combining Options</strong></p>\n\n<p>Using the options argument, it is possible to combine different types of listeners:</p>\n\n<p>A delayed, one-time listener.</p>\n\n<pre><code>myPanel.on('hide', this.handleClick, this, {\n    single: true,\n    delay: 100\n});\n</code></pre>\n\n<p><strong>Attaching multiple handlers in 1 call</strong></p>\n\n<p>The method also allows for a single argument to be passed which is a config object containing properties which\nspecify multiple events. For example:</p>\n\n<pre><code>myGridPanel.on({\n    cellClick: this.onCellClick,\n    mouseover: this.onMouseOver,\n    mouseout: this.onMouseOut,\n    scope: this // Important. Ensure \"this\" is correct during handler execution\n});\n</code></pre>\n\n<p>One can also specify options for each event handler separately:</p>\n\n<pre><code>myGridPanel.on({\n    cellClick: {fn: this.onCellClick, scope: this, single: true},\n    mouseover: {fn: panel.onMouseOver, scope: panel}\n});\n</code></pre>\n",
968             "name": "options"
969           }
970         ],
971         "name": "on",
972         "owner": "Ext.util.Observable",
973         "doc": "<p>Shorthand for <a href=\"#/api/Ext.draw.engine.Vml-method-addListener\" rel=\"Ext.draw.engine.Vml-method-addListener\" class=\"docClass\">addListener</a>.</p>\n\n<p>Appends an event handler to this object.</p>\n",
974         "linenr": 669,
975         "return": {
976           "type": "void",
977           "doc": "\n"
978         },
979         "html_filename": "Observable.html"
980       },
981       {
982         "deprecated": null,
983         "alias": null,
984         "protected": false,
985         "tagname": "method",
986         "href": "Base3.html#Ext-Base-method-override",
987         "shortDoc": "Override prototype members of this class. ...",
988         "static": true,
989         "filename": "/mnt/ebs/nightly/git/SDK/platform/core/src/class/Base.js",
990         "private": false,
991         "params": [
992           {
993             "type": "Object",
994             "optional": false,
995             "doc": "\n",
996             "name": "members"
997           }
998         ],
999         "name": "override",
1000         "owner": "Ext.Base",
1001         "doc": "<p>Override prototype members of this class. Overridden methods can be invoked via\n<a href=\"#/api/Ext.Base-method-callOverridden\" rel=\"Ext.Base-method-callOverridden\" class=\"docClass\">Ext.Base.callOverridden</a></p>\n\n<pre><code>Ext.define('My.Cat', {\n    constructor: function() {\n        alert(\"I'm a cat!\");\n\n        return this;\n    }\n});\n\nMy.Cat.override({\n    constructor: function() {\n        alert(\"I'm going to be a cat!\");\n\n        var instance = this.callOverridden();\n\n        alert(\"Meeeeoooowwww\");\n\n        return instance;\n    }\n});\n\nvar kitty = new My.Cat(); // alerts \"I'm going to be a cat!\"\n                          // alerts \"I'm a cat!\"\n                          // alerts \"Meeeeoooowwww\"\n</code></pre>\n",
1002         "linenr": 518,
1003         "return": {
1004           "type": "Ext.Base",
1005           "doc": "<p>this</p>\n"
1006         },
1007         "html_filename": "Base3.html"
1008       },
1009       {
1010         "deprecated": null,
1011         "alias": null,
1012         "protected": false,
1013         "tagname": "method",
1014         "href": "Observable.html#Ext-util-Observable-method-relayEvents",
1015         "shortDoc": "Relays selected events from the specified Observable as if the events were fired by this. ...",
1016         "static": false,
1017         "filename": "/mnt/ebs/nightly/git/SDK/platform/src/util/Observable.js",
1018         "private": false,
1019         "params": [
1020           {
1021             "type": "Object",
1022             "optional": false,
1023             "doc": "<p>The Observable whose events this object is to relay.</p>\n",
1024             "name": "origin"
1025           },
1026           {
1027             "type": "[String]",
1028             "optional": false,
1029             "doc": "<p>Array of event names to relay.</p>\n",
1030             "name": "events"
1031           },
1032           {
1033             "type": "Object",
1034             "optional": false,
1035             "doc": "\n",
1036             "name": "prefix"
1037           }
1038         ],
1039         "name": "relayEvents",
1040         "owner": "Ext.util.Observable",
1041         "doc": "<p>Relays selected events from the specified Observable as if the events were fired by <code>this</code>.</p>\n",
1042         "linenr": 573,
1043         "return": {
1044           "type": "void",
1045           "doc": "\n"
1046         },
1047         "html_filename": "Observable.html"
1048       },
1049       {
1050         "deprecated": null,
1051         "alias": null,
1052         "protected": false,
1053         "tagname": "method",
1054         "href": "Observable.html#Ext-util-Observable-method-releaseCapture",
1055         "shortDoc": "Removes all added captures from the Observable. ...",
1056         "static": true,
1057         "filename": "/mnt/ebs/nightly/git/SDK/platform/src/util/Observable.js",
1058         "private": false,
1059         "params": [
1060           {
1061             "type": "Observable",
1062             "optional": false,
1063             "doc": "<p>The Observable to release</p>\n",
1064             "name": "o"
1065           }
1066         ],
1067         "name": "releaseCapture",
1068         "owner": "Ext.util.Observable",
1069         "doc": "<p>Removes <strong>all</strong> added captures from the Observable.</p>\n",
1070         "linenr": 44,
1071         "return": {
1072           "type": "void",
1073           "doc": "\n"
1074         },
1075         "html_filename": "Observable.html"
1076       },
1077       {
1078         "deprecated": null,
1079         "alias": null,
1080         "protected": false,
1081         "tagname": "method",
1082         "href": "Surface.html#Ext-draw-Surface-method-remove",
1083         "shortDoc": "Removes a given sprite from the surface, optionally destroying the sprite in the process. ...",
1084         "static": false,
1085         "filename": "/mnt/ebs/nightly/git/SDK/platform/src/draw/Surface.js",
1086         "private": false,
1087         "params": [
1088           {
1089             "type": "Ext.draw.Sprite",
1090             "optional": false,
1091             "doc": "\n",
1092             "name": "sprite"
1093           },
1094           {
1095             "type": "Boolean",
1096             "optional": false,
1097             "doc": "\n",
1098             "name": "destroySprite"
1099           }
1100         ],
1101         "name": "remove",
1102         "owner": "Ext.draw.Surface",
1103         "doc": "<p>Removes a given sprite from the surface, optionally destroying the sprite in the process.\nYou can also call the sprite own <code>remove</code> method.</p>\n\n<p>For example:</p>\n\n<pre><code>drawComponent.surface.remove(sprite);\n//or...\nsprite.remove();\n</code></pre>\n",
1104         "linenr": 573,
1105         "return": {
1106           "type": "Number",
1107           "doc": "<p>the sprite's new index in the list</p>\n"
1108         },
1109         "html_filename": "Surface.html"
1110       },
1111       {
1112         "deprecated": null,
1113         "alias": null,
1114         "protected": false,
1115         "tagname": "method",
1116         "href": "Surface.html#Ext-draw-Surface-method-removeAll",
1117         "shortDoc": "Removes all sprites from the surface, optionally destroying the sprites in the process. ...",
1118         "static": false,
1119         "filename": "/mnt/ebs/nightly/git/SDK/platform/src/draw/Surface.js",
1120         "private": false,
1121         "params": [
1122           {
1123             "type": "Boolean",
1124             "optional": false,
1125             "doc": "<p>Whether to destroy all sprites when removing them.</p>\n",
1126             "name": "destroySprites"
1127           }
1128         ],
1129         "name": "removeAll",
1130         "owner": "Ext.draw.Surface",
1131         "doc": "<p>Removes all sprites from the surface, optionally destroying the sprites in the process.</p>\n\n<p>For example:</p>\n\n<pre><code>drawComponent.surface.removeAll();\n</code></pre>\n",
1132         "linenr": 600,
1133         "return": {
1134           "type": "Number",
1135           "doc": "<p>The sprite's new index in the list.</p>\n"
1136         },
1137         "html_filename": "Surface.html"
1138       },
1139       {
1140         "deprecated": null,
1141         "alias": null,
1142         "protected": false,
1143         "tagname": "method",
1144         "href": "Surface.html#Ext-draw-Surface-method-removeCls",
1145         "shortDoc": "Removes one or more CSS classes from the element. ...",
1146         "static": false,
1147         "filename": "/mnt/ebs/nightly/git/SDK/platform/src/draw/Surface.js",
1148         "private": false,
1149         "params": [
1150           {
1151             "type": "Object",
1152             "optional": false,
1153             "doc": "<p>The sprite to remove the class from.</p>\n",
1154             "name": "sprite"
1155           },
1156           {
1157             "type": "String/[String]",
1158             "optional": false,
1159             "doc": "<p>The CSS class to remove, or an array of classes</p>\n",
1160             "name": "className"
1161           }
1162         ],
1163         "name": "removeCls",
1164         "owner": "Ext.draw.Surface",
1165         "doc": "<p>Removes one or more CSS classes from the element.</p>\n\n<p>For example:</p>\n\n<pre><code>drawComponent.surface.removeCls(sprite, 'x-visible');\n</code></pre>\n",
1166         "linenr": 286,
1167         "return": {
1168           "type": "void",
1169           "doc": "\n"
1170         },
1171         "html_filename": "Surface.html"
1172       },
1173       {
1174         "deprecated": null,
1175         "alias": null,
1176         "protected": false,
1177         "tagname": "method",
1178         "href": "Observable.html#Ext-util-Observable-method-removeListener",
1179         "shortDoc": "Removes an event handler. ...",
1180         "static": false,
1181         "filename": "/mnt/ebs/nightly/git/SDK/platform/src/util/Observable.js",
1182         "private": false,
1183         "params": [
1184           {
1185             "type": "String",
1186             "optional": false,
1187             "doc": "<p>The type of event the handler was associated with.</p>\n",
1188             "name": "eventName"
1189           },
1190           {
1191             "type": "Function",
1192             "optional": false,
1193             "doc": "<p>The handler to remove. <strong>This must be a reference to the function passed into the\n<a href=\"#/api/Ext.draw.engine.Vml-method-addListener\" rel=\"Ext.draw.engine.Vml-method-addListener\" class=\"docClass\">addListener</a> call.</strong></p>\n",
1194             "name": "handler"
1195           },
1196           {
1197             "type": "Object",
1198             "optional": true,
1199             "doc": "<p>(optional) The scope originally specified for the handler.</p>\n",
1200             "name": "scope"
1201           }
1202         ],
1203         "name": "removeListener",
1204         "owner": "Ext.util.Observable",
1205         "doc": "<p>Removes an event handler.</p>\n",
1206         "linenr": 392,
1207         "return": {
1208           "type": "void",
1209           "doc": "\n"
1210         },
1211         "html_filename": "Observable.html"
1212       },
1213       {
1214         "deprecated": null,
1215         "alias": null,
1216         "protected": false,
1217         "tagname": "method",
1218         "href": "Observable.html#Ext-util-Observable-method-removeManagedListener",
1219         "shortDoc": "Removes listeners that were added by the mon method. ...",
1220         "static": false,
1221         "filename": "/mnt/ebs/nightly/git/SDK/platform/src/util/Observable.js",
1222         "private": false,
1223         "params": [
1224           {
1225             "type": "Observable|Element",
1226             "optional": false,
1227             "doc": "<p>The item from which to remove a listener/listeners.</p>\n",
1228             "name": "item"
1229           },
1230           {
1231             "type": "Object|String",
1232             "optional": false,
1233             "doc": "<p>The event name, or an object containing event name properties.</p>\n",
1234             "name": "ename"
1235           },
1236           {
1237             "type": "Function",
1238             "optional": false,
1239             "doc": "<p>Optional. If the <code>ename</code> parameter was an event name, this is the handler function.</p>\n",
1240             "name": "fn"
1241           },
1242           {
1243             "type": "Object",
1244             "optional": false,
1245             "doc": "<p>Optional. If the <code>ename</code> parameter was an event name, this is the scope (<code>this</code> reference)\nin which the handler function is executed.</p>\n",
1246             "name": "scope"
1247           }
1248         ],
1249         "name": "removeManagedListener",
1250         "owner": "Ext.util.Observable",
1251         "doc": "<p>Removes listeners that were added by the <a href=\"#/api/Ext.draw.engine.Vml-method-mon\" rel=\"Ext.draw.engine.Vml-method-mon\" class=\"docClass\">mon</a> method.</p>\n",
1252         "linenr": 197,
1253         "return": {
1254           "type": "void",
1255           "doc": "\n"
1256         },
1257         "html_filename": "Observable.html"
1258       },
1259       {
1260         "deprecated": null,
1261         "alias": null,
1262         "protected": false,
1263         "tagname": "method",
1264         "href": "Observable.html#Ext-util-Observable-method-resumeEvents",
1265         "shortDoc": "Resumes firing events (see suspendEvents). ...",
1266         "static": false,
1267         "filename": "/mnt/ebs/nightly/git/SDK/platform/src/util/Observable.js",
1268         "private": false,
1269         "params": [
1270
1271         ],
1272         "name": "resumeEvents",
1273         "owner": "Ext.util.Observable",
1274         "doc": "<p>Resumes firing events (see <a href=\"#/api/Ext.draw.engine.Vml-method-suspendEvents\" rel=\"Ext.draw.engine.Vml-method-suspendEvents\" class=\"docClass\">suspendEvents</a>).</p>\n\n<p>If events were suspended using the <code>**queueSuspended**</code> parameter, then all events fired\nduring event suspension will be sent to any listeners now.</p>\n",
1275         "linenr": 554,
1276         "return": {
1277           "type": "void",
1278           "doc": "\n"
1279         },
1280         "html_filename": "Observable.html"
1281       },
1282       {
1283         "deprecated": null,
1284         "alias": null,
1285         "protected": false,
1286         "tagname": "method",
1287         "href": "Surface.html#Ext-draw-Surface-method-setSize",
1288         "shortDoc": "Sets the size of the surface. ...",
1289         "static": false,
1290         "filename": "/mnt/ebs/nightly/git/SDK/platform/src/draw/Surface.js",
1291         "private": false,
1292         "params": [
1293           {
1294             "type": "Number",
1295             "optional": false,
1296             "doc": "<p>The new width of the canvas.</p>\n",
1297             "name": "w"
1298           },
1299           {
1300             "type": "Number",
1301             "optional": false,
1302             "doc": "<p>The new height of the canvas.</p>\n",
1303             "name": "h"
1304           }
1305         ],
1306         "name": "setSize",
1307         "owner": "Ext.draw.Surface",
1308         "doc": "<p>Sets the size of the surface. Accomodates the background (if any) to fit the new size too.</p>\n\n<p>For example:</p>\n\n<pre><code>drawComponent.surface.setSize(500, 500);\n</code></pre>\n\n<p>This method is generally called when also setting the size of the draw Component.</p>\n",
1309         "linenr": 373,
1310         "return": {
1311           "type": "void",
1312           "doc": "\n"
1313         },
1314         "html_filename": "Surface.html"
1315       },
1316       {
1317         "deprecated": null,
1318         "alias": null,
1319         "protected": false,
1320         "tagname": "method",
1321         "href": "Surface.html#Ext-draw-Surface-method-setStyle",
1322         "shortDoc": "Sets CSS style attributes to an element. ...",
1323         "static": false,
1324         "filename": "/mnt/ebs/nightly/git/SDK/platform/src/draw/Surface.js",
1325         "private": false,
1326         "params": [
1327           {
1328             "type": "Object",
1329             "optional": false,
1330             "doc": "<p>The sprite to add, or an array of classes to</p>\n",
1331             "name": "sprite"
1332           },
1333           {
1334             "type": "Object",
1335             "optional": false,
1336             "doc": "<p>An Object with CSS styles.</p>\n",
1337             "name": "styles"
1338           }
1339         ],
1340         "name": "setStyle",
1341         "owner": "Ext.draw.Surface",
1342         "doc": "<p>Sets CSS style attributes to an element.</p>\n\n<p>For example:</p>\n\n<pre><code>drawComponent.surface.setStyle(sprite, {\n    'cursor': 'pointer'\n});\n</code></pre>\n",
1343         "linenr": 299,
1344         "return": {
1345           "type": "void",
1346           "doc": "\n"
1347         },
1348         "html_filename": "Surface.html"
1349       },
1350       {
1351         "deprecated": null,
1352         "alias": null,
1353         "protected": false,
1354         "tagname": "method",
1355         "href": "Surface.html#Ext-draw-Surface-method-setText",
1356         "shortDoc": "Changes the text in the sprite element. ...",
1357         "static": false,
1358         "filename": "/mnt/ebs/nightly/git/SDK/platform/src/draw/Surface.js",
1359         "private": false,
1360         "params": [
1361           {
1362             "type": "Object",
1363             "optional": false,
1364             "doc": "<p>The Sprite to change the text.</p>\n",
1365             "name": "sprite"
1366           },
1367           {
1368             "type": "String",
1369             "optional": false,
1370             "doc": "<p>The new text to be set.</p>\n",
1371             "name": "text"
1372           }
1373         ],
1374         "name": "setText",
1375         "owner": "Ext.draw.Surface",
1376         "doc": "<p>Changes the text in the sprite element. The sprite must be a <code>text</code> sprite.\nThis method can also be called from <a href=\"#/api/Ext.draw.Sprite\" rel=\"Ext.draw.Sprite\" class=\"docClass\">Ext.draw.Sprite</a>.</p>\n\n<p>For example:</p>\n\n<pre><code>var spriteGroup = drawComponent.surface.setText(sprite, 'my new text');\n</code></pre>\n",
1377         "linenr": 809,
1378         "return": {
1379           "type": "void",
1380           "doc": "\n"
1381         },
1382         "html_filename": "Surface.html"
1383       },
1384       {
1385         "deprecated": null,
1386         "alias": null,
1387         "protected": true,
1388         "tagname": "method",
1389         "href": "Base3.html#Ext-Base-method-statics",
1390         "shortDoc": "Get the reference to the class from which this object was instantiated. ...",
1391         "static": false,
1392         "filename": "/mnt/ebs/nightly/git/SDK/platform/core/src/class/Base.js",
1393         "private": false,
1394         "params": [
1395
1396         ],
1397         "name": "statics",
1398         "owner": "Ext.Base",
1399         "doc": "<p>Get the reference to the class from which this object was instantiated. Note that unlike <a href=\"#/api/Ext.Base-property-self\" rel=\"Ext.Base-property-self\" class=\"docClass\">Ext.Base.self</a>,\n<code>this.statics()</code> is scope-independent and it always returns the class from which it was called, regardless of what\n<code>this</code> points to during run-time</p>\n\n<pre><code>Ext.define('My.Cat', {\n    statics: {\n        totalCreated: 0,\n        speciesName: 'Cat' // My.Cat.speciesName = 'Cat'\n    },\n\n    constructor: function() {\n        var statics = this.statics();\n\n        alert(statics.speciesName);     // always equals to 'Cat' no matter what 'this' refers to\n                                        // equivalent to: My.Cat.speciesName\n\n        alert(this.self.speciesName);   // dependent on 'this'\n\n        statics.totalCreated++;\n\n        return this;\n    },\n\n    clone: function() {\n        var cloned = new this.self;                      // dependent on 'this'\n\n        cloned.groupName = this.statics().speciesName;   // equivalent to: My.Cat.speciesName\n\n        return cloned;\n    }\n});\n\n\nExt.define('My.SnowLeopard', {\n    extend: 'My.Cat',\n\n    statics: {\n        speciesName: 'Snow Leopard'     // My.SnowLeopard.speciesName = 'Snow Leopard'\n    },\n\n    constructor: function() {\n        this.callParent();\n    }\n});\n\nvar cat = new My.Cat();                 // alerts 'Cat', then alerts 'Cat'\n\nvar snowLeopard = new My.SnowLeopard(); // alerts 'Cat', then alerts 'Snow Leopard'\n\nvar clone = snowLeopard.clone();\nalert(Ext.getClassName(clone));         // alerts 'My.SnowLeopard'\nalert(clone.groupName);                 // alerts 'Cat'\n\nalert(My.Cat.totalCreated);             // alerts 3\n</code></pre>\n",
1400         "linenr": 199,
1401         "return": {
1402           "type": "Class",
1403           "doc": "\n"
1404         },
1405         "html_filename": "Base3.html"
1406       },
1407       {
1408         "deprecated": null,
1409         "alias": null,
1410         "protected": false,
1411         "tagname": "method",
1412         "href": "Observable.html#Ext-util-Observable-method-suspendEvents",
1413         "shortDoc": "Suspends the firing of all events. ...",
1414         "static": false,
1415         "filename": "/mnt/ebs/nightly/git/SDK/platform/src/util/Observable.js",
1416         "private": false,
1417         "params": [
1418           {
1419             "type": "Boolean",
1420             "optional": false,
1421             "doc": "<p>Pass as true to queue up suspended events to be fired\nafter the <a href=\"#/api/Ext.draw.engine.Vml-method-resumeEvents\" rel=\"Ext.draw.engine.Vml-method-resumeEvents\" class=\"docClass\">resumeEvents</a> call instead of discarding all suspended events.</p>\n",
1422             "name": "queueSuspended"
1423           }
1424         ],
1425         "name": "suspendEvents",
1426         "owner": "Ext.util.Observable",
1427         "doc": "<p>Suspends the firing of all events. (see <a href=\"#/api/Ext.draw.engine.Vml-method-resumeEvents\" rel=\"Ext.draw.engine.Vml-method-resumeEvents\" class=\"docClass\">resumeEvents</a>)</p>\n",
1428         "linenr": 541,
1429         "return": {
1430           "type": "void",
1431           "doc": "\n"
1432         },
1433         "html_filename": "Observable.html"
1434       },
1435       {
1436         "deprecated": null,
1437         "alias": {
1438           "tagname": "alias",
1439           "cls": "Ext.util.Observable",
1440           "doc": null,
1441           "owner": "removeListener"
1442         },
1443         "protected": false,
1444         "tagname": "method",
1445         "href": "Observable.html#Ext-util-Observable-method-un",
1446         "shortDoc": "Shorthand for removeListener. ...",
1447         "static": false,
1448         "filename": "/mnt/ebs/nightly/git/SDK/platform/src/util/Observable.js",
1449         "private": false,
1450         "params": [
1451           {
1452             "type": "String",
1453             "optional": false,
1454             "doc": "<p>The type of event the handler was associated with.</p>\n",
1455             "name": "eventName"
1456           },
1457           {
1458             "type": "Function",
1459             "optional": false,
1460             "doc": "<p>The handler to remove. <strong>This must be a reference to the function passed into the\n<a href=\"#/api/Ext.draw.engine.Vml-method-addListener\" rel=\"Ext.draw.engine.Vml-method-addListener\" class=\"docClass\">addListener</a> call.</strong></p>\n",
1461             "name": "handler"
1462           },
1463           {
1464             "type": "Object",
1465             "optional": true,
1466             "doc": "<p>(optional) The scope originally specified for the handler.</p>\n",
1467             "name": "scope"
1468           }
1469         ],
1470         "name": "un",
1471         "owner": "Ext.util.Observable",
1472         "doc": "<p>Shorthand for <a href=\"#/api/Ext.draw.engine.Vml-method-removeListener\" rel=\"Ext.draw.engine.Vml-method-removeListener\" class=\"docClass\">removeListener</a>.</p>\n\n<p>Removes an event handler.</p>\n",
1473         "linenr": 675,
1474         "return": {
1475           "type": "void",
1476           "doc": "\n"
1477         },
1478         "html_filename": "Observable.html"
1479       }
1480     ],
1481     "property": [
1482       {
1483         "type": "Class",
1484         "deprecated": null,
1485         "alias": null,
1486         "protected": true,
1487         "tagname": "property",
1488         "href": "Base3.html#Ext-Base-property-self",
1489         "shortDoc": "Get the reference to the current class from which this object was instantiated. ...",
1490         "static": false,
1491         "filename": "/mnt/ebs/nightly/git/SDK/platform/core/src/class/Base.js",
1492         "private": false,
1493         "name": "self",
1494         "owner": "Ext.Base",
1495         "doc": "<p>Get the reference to the current class from which this object was instantiated. Unlike <a href=\"#/api/Ext.Base-method-statics\" rel=\"Ext.Base-method-statics\" class=\"docClass\">Ext.Base.statics</a>,\n<code>this.self</code> is scope-dependent and it's meant to be used for dynamic inheritance. See <a href=\"#/api/Ext.Base-method-statics\" rel=\"Ext.Base-method-statics\" class=\"docClass\">Ext.Base.statics</a>\nfor a detailed comparison</p>\n\n<pre><code>Ext.define('My.Cat', {\n    statics: {\n        speciesName: 'Cat' // My.Cat.speciesName = 'Cat'\n    },\n\n    constructor: function() {\n        alert(this.self.speciesName); / dependent on 'this'\n\n        return this;\n    },\n\n    clone: function() {\n        return new this.self();\n    }\n});\n\n\nExt.define('My.SnowLeopard', {\n    extend: 'My.Cat',\n    statics: {\n        speciesName: 'Snow Leopard'         // My.SnowLeopard.speciesName = 'Snow Leopard'\n    }\n});\n\nvar cat = new My.Cat();                     // alerts 'Cat'\nvar snowLeopard = new My.SnowLeopard();     // alerts 'Snow Leopard'\n\nvar clone = snowLeopard.clone();\nalert(Ext.getClassName(clone));             // alerts 'My.SnowLeopard'\n</code></pre>\n",
1496         "linenr": 18,
1497         "html_filename": "Base3.html"
1498       }
1499     ],
1500     "cssVar": [
1501
1502     ],
1503     "cssMixin": [
1504
1505     ],
1506     "event": [
1507
1508     ]
1509   },
1510   "singleton": false,
1511   "alias": null,
1512   "superclasses": [
1513     "Ext.Base",
1514     "Ext.draw.Surface"
1515   ],
1516   "protected": false,
1517   "tagname": "class",
1518   "mixins": [
1519
1520   ],
1521   "href": "Vml.html#Ext-draw-engine-Vml",
1522   "subclasses": [
1523
1524   ],
1525   "static": false,
1526   "author": null,
1527   "component": false,
1528   "filename": "/mnt/ebs/nightly/git/SDK/platform/src/draw/engine/Vml.js",
1529   "private": false,
1530   "alternateClassNames": [
1531
1532   ],
1533   "name": "Ext.draw.engine.Vml",
1534   "doc": "<p>Provides specific methods to draw with VML.</p>\n",
1535   "mixedInto": [
1536
1537   ],
1538   "linenr": 1,
1539   "xtypes": [
1540
1541   ],
1542   "html_filename": "Vml.html",
1543   "extends": "Ext.draw.Surface"
1544 });