Search
Table.CellPicturePos Property
See Also
 



Gets or sets the alignment and stretch mode of a cell picture.

 Syntax

VB6  Copy Code

Public Property Get CellPicturePos( _
    ByVal col As Long, _
    ByVal row As Long _
) As EPicturePos
Public Property Let CellPicturePos( _
    ByVal col As Long, _
    ByVal row As Long, _
    ByVal Value As EPicturePos _
)

C++  Copy Code

public:
EPicturePos get_CellPicturePos (
    int col,
    int row
)
void put_CellPicturePos (
    int col,
    int row,
    EPicturePos value
)

 Parameters

col
The 0-based index of the cell's column.
row
The 0-based index of the cell's row.

 Property Value

A member of the EPicturePos enumeration.

 Remarks

Specifies how a picture is positioned inside a cell. picStretch and picFit make the picture stretched to cover the cell area, respectively non- proportionally / proportionally. picTile tiles the cell with several copies of the picture. The picCenter value centers the picture inside the cell. The other EPicturePos values attach a picture corner to the corresponding cell corner. This is an indexed property having the cell column as first index and the cell row as second.

 See Also