IVsTextImage.ReleaseLine(LINEDATAEX[]) Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Releases the LINEDATAEX structure.
public:
int ReleaseLine(cli::array <Microsoft::VisualStudio::TextManager::Interop::LINEDATAEX> ^ pLineData);
int ReleaseLine(std::Array <Microsoft::VisualStudio::TextManager::Interop::LINEDATAEX> const & pLineData);
public int ReleaseLine (Microsoft.VisualStudio.TextManager.Interop.LINEDATAEX[] pLineData);
abstract member ReleaseLine : Microsoft.VisualStudio.TextManager.Interop.LINEDATAEX[] -> int
Public Function ReleaseLine (pLineData As LINEDATAEX()) As Integer
Parameters
- pLineData
- LINEDATAEX[]
[in] Pointer to the LINEDATAEX structure to be released.
Returns
If the method succeeds, it returns S_OK. If it fails, it returns an error code.
Remarks
Releases the pointer to the internal data returned in the GetLine method.
COM Signature
From textmgr.idl:
HRESULT IVsTextImage::ReleaseLine(
[in] LINEDATAEX * pLineData
);