LBuffer& LBuffer::operator=(lpStr)
LBuffer& LBuffer::operator=(LBufferSrc)
Copies the specified item to the class objects buffer.
The character string to copy.
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.
Win32, x64.
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;
}
Help Collections
Raster .NET | C API | C++ Class Library | HTML5 JavaScript
Document .NET | C API | C++ Class Library | HTML5 JavaScript
Medical .NET | C API | C++ Class Library | HTML5 JavaScript
Medical Web Viewer .NET
Multimedia
Direct Show .NET | C API | Filters
Media Foundation .NET | C API | Transforms
Supported Platforms
.NET, Java, Android, and iOS/macOS Assemblies
Imaging, Medical, and Document
C API/C++ Class Libraries
Imaging, Medical, and Document
HTML5 JavaScript Libraries
Imaging, Medical, and Document