Gets or sets the images used to display intrinsic button controls.
SyntaxVB6
Copy Code
|
|---|
Public Property Get ButtonImages() As ButtonImages |
C++
Copy Code
|
|---|
public: |
A ButtonImages object.
RemarksAt this time the following members of the ButtonImages object can be set, each of them is of type Picture:
Member | Description |
|---|---|
The button displayed beside Expandable boxes when the tree branch starting from a box can be expanded. A small "+" icon is used by default. | |
The button displayed beside Expandable boxes when the tree branch starting from a box can be collapsed. A small "-" icon is used by default. | |
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.
ExampleThe following VB code sets custom images for the expand/collapse box buttons.
VB6
Copy Code
|
|---|
fcx.ButtonImages.Expand = LoadPicture("D:\Images\exp.jpg") |
See Also