GetTrailingForWrites
Gets the string that is currently configured to be automatically appended to device command strings.
Syntax
Section titled “Syntax”virtual CString GetTrailingForWrites() const abstract;Return value
Section titled “Return value”The string that is currently configured to be automatically appended to device command strings.
Remarks
Section titled “Remarks”See the description of the SetTrailingForWrites function for more details.
Example
Section titled “Example”The following example demonstrates use of the GetTrailingForWrites function.
HRESULT Acme4321::OnFinalInitialize(){ HRESULT hr = S_OK;
CString strTrailing = io.GetTrailingForWrites();
return hr;}