Search
FlowChart.ButtonImages Property
See Also
 



Gets or sets the images used to display intrinsic button controls.

 Syntax

VB6  Copy Code

Public Property Get ButtonImages() As ButtonImages

C++  Copy Code

public:
ButtonImages* get_ButtonImages ()

 Property Value

A ButtonImages object.

 Remarks

At this time the following members of the ButtonImages object can be set, each of them is of type Picture:

Member

Description

Expand

The button displayed beside Expandable boxes when the tree branch starting from a box can be expanded. A small "+" icon is used by default.

Collapse

The button displayed beside Expandable boxes when the tree branch starting from a box can be collapsed. A small "-" icon is used by default.

Scroll

The scroll button displayed in the caption area of Scrollable tables.

If any of these values is set to null (Nothing in Visual Basic), the FlowChartX default image is used for the respective button. When setting custom images for the expand/collapse buttons, make sure they are of the same size.

 Example

The following VB code sets custom images for the expand/collapse box buttons.

VB6  Copy Code

fcx.ButtonImages.Expand = LoadPicture("D:\Images\exp.jpg")
fcx.ButtonImages.Collapse = LoadPicture("D:\Images\col.jpg")

 See Also