Compositor.CreateRectangleClip 方法

定义

重载

CreateRectangleClip(Single, Single, Single, Single)

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

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

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

CreateRectangleClip()

创建具有默认值的 RectangleClip 实例。

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

属性

适用于

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

属性

适用于

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

属性

适用于