This documentation is for the old version. Go to the latest Graphics Mill docs

StreamWrapper.UnlockRegion Method

Removes the access restriction on a range of bytes previously restricted with LockRegion(Int64, Int64, Int32).

Namespace: Aurigma.GraphicsMill
Assembly: Aurigma.GraphicsMill (in Aurigma.GraphicsMill.dll)

Syntax

Visual Basic
Public Overridable Sub UnlockRegion ( _
	libOffset As Long, _
	cb As Long, _
	dwLockType As Integer _
)
C#
public virtual void UnlockRegion(
	long libOffset,
	long cb,
	int dwLockType
)

Parameters

libOffset

Type: System.Int64

The byte offset for the beginning of the range.
cb

Type: System.Int64

The length, in bytes, of the range to restrict.
dwLockType

Type: System.Int32

The access restrictions previously placed on the range.

Remarks

For more information, please see the existing documentation for IStream::UnlockRegion in the MSDN library.

See Also

Reference