ImageBuffer.Picture Property |
||
Returns a Picture object created from the data in the buffer. | ||
Syntax: | Public Picture As Picture |
|
Limitations: | Read only. |
|
Remarks: | Every access to Picture copies the image data from the buffer to a DIB. The Picture interface that is returned is actually an IPictureDisp interface that can be used in Visual Basic. |
|
Sample: | This example shows how to assign a picture from an image buffer to a picture box: Dim Buf As ImageBuffer Set Buf = ICImagingControl1.ImageBuffers.Item(1) picPictureBox.Picture = Buf.Picture |
|
See also: | ImageBuffer |