﻿function TRTEMenuButton(id)
{
	//private
		var self = this;

	//public
		this.imageObject = null;
		this.imageFile = '';
		this.imageWidth = null;
		this.imageHeight = null;
		this.description = '';
		this.onClick = null;
		this.active = false;
		this.enabled = true;
		this.canModifyContent = true;
		this.id = id;	

		this.determineFindValue = function() //implemented to be able to use TList.find()
		{
			return self.imageObject;
		}
}
