IVsCodeWindow.GetEditorCaption(READONLYSTATUS, String) 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.
Returns the editor caption to which editors can append custom text.
public:
int GetEditorCaption(Microsoft::VisualStudio::TextManager::Interop::READONLYSTATUS dwReadOnly, [Runtime::InteropServices::Out] System::String ^ % pbstrEditorCaption);
int GetEditorCaption(Microsoft::VisualStudio::TextManager::Interop::READONLYSTATUS dwReadOnly, [Runtime::InteropServices::Out] std::wstring const & & pbstrEditorCaption);
public int GetEditorCaption (Microsoft.VisualStudio.TextManager.Interop.READONLYSTATUS dwReadOnly, out string pbstrEditorCaption);
abstract member GetEditorCaption : Microsoft.VisualStudio.TextManager.Interop.READONLYSTATUS * string -> int
Public Function GetEditorCaption (dwReadOnly As READONLYSTATUS, ByRef pbstrEditorCaption As String) As Integer
Parameters
- dwReadOnly
- READONLYSTATUS
[in] Gets the read and write status of the text buffer. For a list of dwReadOnly
values, see READONLYSTATUS
- pbstrEditorCaption
- String
[out] Pointer to a BSTR that contains the caption text.
Returns
If the method succeeds, it returns S_OK. If it fails, it returns an error code.
Remarks
This method determines the read-only status by checking with the associated text buffer.
COM Signature
From textmgr.idl:
HRESULT IVsCodeWindow::GetEditorCaption(
[in] READONLYSTATUS dwReadOnly,
[out] BSTR *pbstrEditorCaption
);