Compositor.CreateRectangleClip 方法

定义

重载

CreateRectangleClip()

使用默认值创建 RectangleClip 的实例。

CreateRectangleClip(Single, Single, Single, Single)

使用指定的边缘值创建 RectangleClip 的实例。

CreateRectangleClip(Single, Single, Single, Single, Vector2, Vector2, Vector2, Vector2)

使用指定的边缘和角半径值创建 RectangleClip 实例。

CreateRectangleClip()

使用默认值创建 RectangleClip 的实例。

public:
 virtual RectangleClip ^ CreateRectangleClip() = CreateRectangleClip;
/// [Windows.Foundation.Metadata.Overload("CreateRectangleClip")]
RectangleClip CreateRectangleClip();
[Windows.Foundation.Metadata.Overload("CreateRectangleClip")]
public RectangleClip CreateRectangleClip();
function createRectangleClip()
Public Function CreateRectangleClip () As RectangleClip

返回

RectangleClip 的创建实例。

属性

Windows 要求

设备系列
Windows 10, version 2104 (在 10.0.20348.0 中引入)
API contract
Windows.Foundation.UniversalApiContract (在 v12.0 中引入)

适用于

CreateRectangleClip(Single, Single, Single, Single)

使用指定的边缘值创建 RectangleClip 的实例。

public:
 virtual RectangleClip ^ CreateRectangleClip(float left, float top, float right, float bottom) = CreateRectangleClip;
/// [Windows.Foundation.Metadata.Overload("CreateRectangleClipWithSides")]
RectangleClip CreateRectangleClip(float const& left, float const& top, float const& right, float const& bottom);
[Windows.Foundation.Metadata.Overload("CreateRectangleClipWithSides")]
public RectangleClip CreateRectangleClip(float left, float top, float right, float bottom);
function createRectangleClip(left, top, right, bottom)
Public Function CreateRectangleClip (left As Single, top As Single, right As Single, bottom As Single) As RectangleClip

参数

left
Single

float

左边缘与视觉对象左侧的偏移量(以像素为单位)。

top
Single

float

上边缘与视觉对象顶部的偏移量(以像素为单位)。

right
Single

float

右边缘与视觉对象右侧的偏移量(以像素为单位)。

bottom
Single

float

下边缘与视觉对象底部的偏移量(以像素为单位)。

返回

RectangleClip 的创建实例。

属性

Windows 要求

设备系列
Windows 10, version 2104 (在 10.0.20348.0 中引入)
API contract
Windows.Foundation.UniversalApiContract (在 v12.0 中引入)

适用于

CreateRectangleClip(Single, Single, Single, Single, Vector2, Vector2, Vector2, Vector2)

使用指定的边缘和角半径值创建 RectangleClip 实例。

public:
 virtual RectangleClip ^ CreateRectangleClip(float left, float top, float right, float bottom, float2 topLeftRadius, float2 topRightRadius, float2 bottomRightRadius, float2 bottomLeftRadius) = CreateRectangleClip;
/// [Windows.Foundation.Metadata.Overload("CreateRectangleClipWithSidesAndRadius")]
RectangleClip CreateRectangleClip(float const& left, float const& top, float const& right, float const& bottom, float2 const& topLeftRadius, float2 const& topRightRadius, float2 const& bottomRightRadius, float2 const& bottomLeftRadius);
[Windows.Foundation.Metadata.Overload("CreateRectangleClipWithSidesAndRadius")]
public RectangleClip CreateRectangleClip(float left, float top, float right, float bottom, Vector2 topLeftRadius, Vector2 topRightRadius, Vector2 bottomRightRadius, Vector2 bottomLeftRadius);
function createRectangleClip(left, top, right, bottom, topLeftRadius, topRightRadius, bottomRightRadius, bottomLeftRadius)
Public Function CreateRectangleClip (left As Single, top As Single, right As Single, bottom As Single, topLeftRadius As Vector2, topRightRadius As Vector2, bottomRightRadius As Vector2, bottomLeftRadius As Vector2) As RectangleClip

参数

left
Single

float

左边缘与视觉对象左侧的偏移量(以像素为单位)。

top
Single

float

上边缘与视觉对象顶部的偏移量(以像素为单位)。

right
Single

float

右边缘与视觉对象右侧的偏移量(以像素为单位)。

bottom
Single

float

下边缘与视觉对象底部的偏移量(以像素为单位)。

topLeftRadius
Vector2 Vector2

float2

矩形左上角圆角的圆角量(以像素为单位)。

topRightRadius
Vector2 Vector2

float2

矩形右上角的舍入量(以像素为单位)。

bottomRightRadius
Vector2 Vector2

float2

矩形右下角舍入的量(以像素为单位)。

bottomLeftRadius
Vector2 Vector2

float2

矩形左下角舍入的量(以像素为单位)。

返回

RectangleClip 的创建实例。

属性

Windows 要求

设备系列
Windows 10, version 2104 (在 10.0.20348.0 中引入)
API contract
Windows.Foundation.UniversalApiContract (在 v12.0 中引入)

适用于