Unlocks previously locked area of bitmap with LockBits(Int32, Int32, Int32, Int32) method.
Namespace:
Aurigma.GraphicsMill
Assembly:
Aurigma.GraphicsMill (in Aurigma.GraphicsMill.dll)
Public Sub UnlockBits ( _ bitmapData As BitmapData _ )
public void UnlockBits( BitmapData bitmapData )
Type: Aurigma.GraphicsMill.BitmapData
BitmapData object previously returned with LockBits(Int32, Int32, Int32, Int32) method.Each call of LockBits(Int32, Int32, Int32, Int32) should be followed with subsequent UnlockBits(BitmapData) method call. You cannot lock bits one more time until you unlock them with this method. You can check if bits are locked with BitsLocked property.