GoBasicNode Center Color

Hi.

I understand the BrushColor affects the color of the node and Pen affects the outline color.
Sample:
Dim bn As GoBasicNode = New GoBasicNode()
bn.Shape.BrushColor = Color.Green
What property/object controls the center color of a basic node? Black is the default - but I need to change this programmatically.
Thanks!
Dave

What you see there in a default GoBasicNode is the node’s Port, a GoPort.

bn.Port.BrushColor = Color.Green

Thanks - this works perfectly!

-Dave