FileBrowserContentProviderStoreBitmap Method |
Stores an image with the given url and image format.
Namespace: Kettic.AspNet.Controls.WidgetsAssembly: Kettic.AspNet.Controls (in Kettic.AspNet.Controls.dll) Version: 2014.4.1129.0 (2014.04.1129.0)
Syntax public abstract string StoreBitmap(
Bitmap bitmap,
string url,
ImageFormat format
)
Public MustOverride Function StoreBitmap (
bitmap As Bitmap,
url As String,
format As ImageFormat
) As String
public:
virtual String^ StoreBitmap(
Bitmap^ bitmap,
String^ url,
ImageFormat^ format
) abstract
abstract StoreBitmap :
bitmap : Bitmap *
url : string *
format : ImageFormat -> string
Parameters
- bitmap
- Type: System.DrawingBitmap
The Bitmap object to be stored. - url
- Type: SystemString
The url of the bitmap. - format
- Type: System.Drawing.ImagingImageFormat
The image format of the bitmap.
Return Value
Type:
Stringstring.Empty when the operation was successful; otherwise an error message token.
Remarks
Used when creating thumbnails in the ImageManager dialog.
See Also