'Declaration <CategoryAttribute("VintaSoft")> <DescriptionAttribute("Occurs when the image is loading.")> Public Event ImageLoading As EventHandler(Of ImageLoadingEventArgs)
[Category("VintaSoft")] [Description("Occurs when the image is loading.")] public event EventHandler<ImageLoadingEventArgs> ImageLoading
[Category("VintaSoft")] [Description("Occurs when the image is loading.")] public: __event EventHandler<ImageLoadingEventArgs*>* ImageLoading
[Category("VintaSoft")] [Description("Occurs when the image is loading.")] public: event EventHandler<ImageLoadingEventArgs^>^ ImageLoading
Event Data
The event handler receives an argument of type ImageLoadingEventArgs containing data related to this event. The following ImageLoadingEventArgs properties provide information specific to this event.
Property | Description |
---|---|
Cancel | Gets or sets a value indicating whether current loading process should be canceled. |
DecodingSettings | Gets or sets the decoding settings which must be used for loading of image. |
Image | Gets the VintasoftImage object. (Inherited from Vintasoft.Imaging.ImageEventArgs) |
RenderingSettings | Gets or sets the rendering settings which must be used for loading of image. |
Remarks
This event is thread safe.
Requirements
Target Platforms: Windows 10, Windows 8, Windows 7, Windows Vista, Windows XP, Windows Server 2012, Windows Server 2008, Windows Server 2003
See Also