Question

Is it possible to find the bounding rectangle of a PathFigureCollection object, in c# ? (I know how to get it using a FrameworkElement but that's not what I want)

Was it helpful?

Solution

Try to include your PathFigureCollection in a PathGeometry object, and then you can access the bounding rectangle via the Bounds property.

Example

var geometry = new PathGeometry {
    Figures = new PathFigureCollection()
};
var boundingRect = geometry.Bounds;
Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top