Sha256: 63c2c3d5382e6fc3fc12e4a5400de86c36fea80946e4ee8a219fc746d78909c5
Contents?: true
Size: 1.07 KB
Versions: 7
Compression:
Stored size: 1.07 KB
Contents
/*** = Description ** Define default setting here. Will be used, when no or invalid constructor ** options are supplied. ***/ var//RSence.Foundation HControlDefaults = HClass.extend({ /** Whether or not to draw when constructed. */ autoDraw: true, /** The default label. A label is the "visual value" of a component that * operates on a "hidden" value. **/ label: "", /** The default initial visibility of the component. **/ visible: true, /** The default initial event responders to register to a component. * By default no events are enabled. **/ events: null, constructor: function(){ if(!this.events){ this.events = {}; } }, /** The default initial value of the component. **/ value: 0, /** The default initial enabled state of the component. **/ enabled: true, /** The default initial active state of the component. **/ active: false, /** The default initial minimum value of the component. **/ minValue: -2147483648, /** The default initial maximum value of the component. **/ maxValue: 2147483648 });
Version data entries
7 entries across 7 versions & 1 rubygems