Search
FlowChart.BoxPicture Property
See Also
 



Gets or sets the image that is assigned to the Picture property of new boxes.

 Syntax

VB6  Copy Code

Public Property Get BoxPicture() As IPictureDisp
Public Property Let BoxPicture( _
    ByVal value As IPictureDisp _
)

C++  Copy Code

public:
IPictureDisp* get_BoxPicture ()
void put_BoxPicture (
    IPictureDisp* value
)

 Property Value

A picture object. The default is null (Nothing in Visual Basic).

 Remarks

Setting this property does not affect existing boxes. Its value is assigned to the Picture property of a box when the box is created either interactively or programmatically.

 See Also