function RadFreeMaskPart ()
{

};

RadFreeMaskPart.prototype = new RadMaskPart();

RadFreeMaskPart.prototype.IsCaseSensitive = function ()
{
	return true;
};


RadFreeMaskPart.prototype.GetVisValue = function ()
{
    if (this.value.toString() == "")
    {
		return this.PromptChar;
    }
    return this.value;
};


RadFreeMaskPart.prototype.SetValue = function (value, offset)
{
	this.value = value;
	return true;
};

//BEGIN_ATLAS_NOTIFY
if (typeof(Sys) != "undefined")
{
    if (Sys.Application != null && Sys.Application.notifyScriptLoaded != null)
    {
        Sys.Application.notifyScriptLoaded();
    }
}
//END_ATLAS_NOTIFY
