IVsTextLines.UnlockBufferEx(UInt32) Method

Definition

Extension of the UnlockBuffer() method.

public:
 int UnlockBufferEx(System::UInt32 dwFlags);
public:
 int UnlockBufferEx(unsigned int dwFlags);
int UnlockBufferEx(unsigned int dwFlags);
public int UnlockBufferEx (uint dwFlags);
abstract member UnlockBufferEx : uint32 -> int
Public Function UnlockBufferEx (dwFlags As UInteger) As Integer

Parameters

dwFlags
UInt32

[in] Bitwise union of BufferLockFlags values, presently either BLF_READ or BLF_READ_AND_WRITE.)

Returns

If the method succeeds, it returns S_OK. If it fails, it returns an error code.

Implements

Remarks

COM Signature

From textmgr.idl:

HRESULT IVsTextLines::UnlockBufferEx(  
   [in] DWORD dwFlags  
);  

Call this method after calling the method LockBufferEx.

Applies to