![]() | GetTrailingForWrites |
Gets the string that is currently configured to be automatically appended to device command strings.
virtual CString GetTrailingForWrites() const abstract;
The string that is currently configured to be automatically appended to device command strings.
See the description of the SetTrailingForWrites function for more details.
The following example demonstrates use of the GetTrailingForWrites function.
// CoAcme4321.cpp HRESULT Acme4321::OnFinalInitialize() { HRESULT hr = S_OK; CString strTrailing = io.GetTrailingForWrites(); return hr; }