ImageUtil.ImagesFolder.RemoveImage C# (CSharp) Method

RemoveImage() public method

public RemoveImage ( string shortName ) : void
shortName string
return void
		public void RemoveImage(string shortName)
		{
			var info = _images[shortName];
			_images.Remove(shortName);
			OnImageRemoved(info.FullName, info.ShortName);
			SetChanged();
		}