-api-id | -api-type |
---|---|
P:Microsoft.UI.Xaml.UIElement.Clip |
winrt property |
Gets or sets the RectangleGeometry used to define the outline of the contents of a UIElement.
<uiElement>
<uiElement.Clip>
rectangleGeometry
</uiElement.Clip>
</uiElement>
The rectangle geometry to be used for clipping area sizing. The default value is null
(no clipping).
The clipping geometry for UIElement.Clip
in the Windows Runtime API must be a RectangleGeometry. You can't specify a non-rectangular geometry.
The clipped area is the outside of the geometry. In other words, the content that is shown (not clipped) is the area of the rectangle that is drawn with Fill if the geometry were used as data for a Path rather than for clipping. The clipped area is any area that falls outside the rectangle. The clipped area isn't hit-testable.
This example is simple XAML markup that specifies a Clip using an inline RectangleGeometry that specifies its dimensions through an attribute syntax.
[!code-xamlGeometryOvw4]