<< Click to Display Table of Contents >>
Pens |
Returns an E3Chart's Pen Collection object. A Pen Collection object is used to insert, remove, or access all available Pens of an E3Chart. This is a read-only property. Example:
Sub CommandButton1_Click()
For Each pen In Screen.Item("E3Chart1").Pens
pen.Visible = True
Next
End Sub