LineCount Property
The LineCount property returns or sets the number of lines drawn on the 3D XYZ bubble plot wire frame bubbles. Returns a Long.
Syntax
object.LineCount
object.LineCount = LineCount
Parameter | Type | Description |
LineCount | Long | required, number of lines between 10 and 1000 |
Remarks
Set the DrawMethod property to grfWireFrame1 or grfWireFrame2 to see the line count change.
Example 1
This example shows how to return the line count in a 3D XYZ bubble plot when the bubbles are drawn as wire frames.
Debug.Print "Line count = "; XYZBubblePlot.LineCount
Example 2
This example shows how to set the Line count to 10.
XYZBubblePlot.LineCount = 10
Used by: Auto3DBubblePlot object