Stroke.GetBounds Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Retrieves the bounding box for the Stroke object.
public:
virtual System::Windows::Rect GetBounds();
public virtual System.Windows.Rect GetBounds ();
abstract member GetBounds : unit -> System.Windows.Rect
override this.GetBounds : unit -> System.Windows.Rect
Public Overridable Function GetBounds () As Rect
Returns
A Rect structure defining the bounding box for the Stroke object.
Examples
The following example demonstrates how to get the boundary rectangle for a Stroke object.
Rect myRect = thisStroke.GetBounds();
Dim myRect As Rect = thisStroke.GetBounds()
Applies to
Collaborate with us on GitHub
The source for this content can be found on GitHub, where you can also create and review issues and pull requests. For more information, see our contributor guide.