ImageUtil.ImagesFolder.RenameImage C# (CSharp) Method

RenameImage() public method

public RenameImage ( string shortName, string fullName ) : void
shortName string
fullName string
return void
		public void RenameImage(string shortName, string fullName)
		{
			var info = _images[shortName];
			if (info.FullName == fullName)
				return;
			RemoveImage(shortName);
			GetRootFolder().AddImage(fullName, info.Image);
			OnImageRenamed(info.FullName, fullName);
			SetChanged();
		}