#include "ltwrappr.h"
LBuffer& LBuffer::operator=(lpStr)
LBuffer& LBuffer::operator=(LBufferSrc)
L_TCHAR * lpStr; |
character string to copy |
LBuffer& LBufferSrc; |
LBuffer object to copy |
Copies the specified item to the class objects buffer.
Parameter |
Description |
lpStr |
The character string to copy. |
LBufferSrc |
The LBuffer object to copy. |
The LBuffer object.
LBuffer::operator=(LBufferSrc) copies the source class object's buffer to the destination class object's buffer. This results in two copies of the buffer.
The parameter LBufferSrc is passed by reference, and is a required parameter.
LBuffer::operator=(lpStr) copies the specified string to the destination class object's buffer.
Required DLLs and Libraries
LTDIS For a listing of the exact DLLs and Libraries needed, based on the toolkit version, refer to Files To Be Included With Your Application. |
Platforms
Win32, x64.
Functions: |
This is an example for LBuffer::operator=(LBufferSrc):
L_INT LBuffer__operatorExample(LBitmapBase& LeadBitmap)
{
L_INT nRet;
LBuffer LeadBuffer;
LBuffer MyBuffer ;
nRet =(L_INT)LeadBitmap.GetRow(&LeadBuffer,6);
if(nRet < 1)
return nRet;
MyBuffer = LeadBuffer;
return SUCCESS;
}
Raster .NET | C API | C++ Class Library | JavaScript HTML5
Document .NET | C API | C++ Class Library | JavaScript HTML5
Medical .NET | C API | C++ Class Library | JavaScript HTML5
Medical Web Viewer .NET