Search for a Node and Center It

I’ve created a diagram with a search box. I want to be able to use the search box to find a node with a specified text value. My algorithm to search and find the node works fine but how do I center the node so it’s in the view? I tried BringIntoView but that didn’t work. Any other suggestions?

Call myDiagram.Panel.CenterPart(node).

Perfect. Thanks!