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实例。

属性

适用于