Skip to content

Latest commit

 

History

History
26 lines (16 loc) · 1.17 KB

recthelper.md

File metadata and controls

26 lines (16 loc) · 1.17 KB
-api-id -api-type
T:Microsoft.UI.Xaml.RectHelper
winrt class

Microsoft.UI.Xaml.RectHelper

-description

Provides helper methods to evaluate or set Rect values. C# code should use members of Rect instead.

-remarks

Rect is a Windows Runtime structure that represents a rectangle's dimensions with an origin.

RectHelper is one of several Helper classes that are intended to provide utility methods for Windows Runtime structure values. C# code can use members of Rect instead, because utility members are available directly on the structure due to .NET runtime support. C++ code can only access the data values on Rect, for example Left. For C++ developers, approximately the same utility features that a C# developer could use directly on Rect are available in a static form on the RectHelper class.

-examples

-see-also

Rect