/// /// ///
Type.registerNamespace('ImageRotator');
ImageRotator.ImageRotatorBehavior = function(element) { ImageRotator.ImageRotatorBehavior.initializeBase(this, [element]);
// TODO : (Step 1) Add your property variables herethis._myPropertyValue = null;
}
ImageRotator.ImageRotatorBehavior.prototype = { initialize : function() { ImageRotator.ImageRotatorBehavior.callBaseMethod(this,'initialize'); // TODO: Add your initialization code here },
dispose : function() { // TODO: Add your cleanup code here ImageRotator.ImageRotatorBehavior.callBaseMethod(this, 'dispose');
},
// TODO: (Step 2) Add your property accessors here
get_MyProperty : function() {
return this._myPropertyValue;},set_MyProperty : function(value) {
this._myPropertyValue = value; } }
ImageRotator.ImageRotatorBehavior.registerClass( 'ImageRotator.ImageRotatorBehavior', AjaxControlToolkit.BehaviorBase);