Search
Table.PicturePos Property
See Also
 



Gets or sets the alignment and stretch mode of the table Picture.

 Syntax

VB6  Copy Code

Public Property Get PicturePos() As EPicturePos
Public Property Let PicturePos( _
    ByVal value As EPicturePos _
)

C++  Copy Code

public:
EPicturePos get_PicturePos ()
void put_PicturePos (
    EPicturePos value
)

 Property Value

A member of the EPicturePos enumeration. The default is picStretch.

 Remarks

Specifies how the table Picture is positioned inside the table. picStretch and picFit make the picture stretched to cover the table area, respectively non-proportionally or proportionally. picTile tiles several copies of the picture over the table. The picCenter value centers the picture inside the table. Other EPicturePos values align the picture to the corresponding table corner or side.

 See Also