Triggers image resized event

Namespace: MonoSoftware.MonoX.Controls
Assembly: MonoX (in MonoX.dll) Version: 5.1.40.5065 (5.1.40.5065)

Syntax

C#
protected virtual void OnImageResized(
	byte[] croppedContent,
	byte[] originalImageContent
)
Visual Basic
Protected Overridable Sub OnImageResized ( 
	croppedContent As Byte(),
	originalImageContent As Byte()
)
Visual C++
protected:
virtual void OnImageResized(
	array<unsigned char>^ croppedContent, 
	array<unsigned char>^ originalImageContent
)
F#
abstract OnImageResized : 
        croppedContent : byte[] * 
        originalImageContent : byte[] -> unit 
override OnImageResized : 
        croppedContent : byte[] * 
        originalImageContent : byte[] -> unit 

Parameters

croppedContent
Type: array<System..::..Byte>[]()[][]
Cropped image byte array.
originalImageContent
Type: array<System..::..Byte>[]()[][]
Original image byte array.

See Also