CompositionNineGridBrush.SetInsets 方法
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
重载
SetInsets(Single) |
对顶部、底部、左侧和右侧使用相同的值设置 CompositionNineGridBrush 的内插。 默认为 0.0f。 |
SetInsets(Single, Single, Single, Single) |
使用顶部、底部、左侧和右侧的指定值设置 CompositionNineGridBrush 的内插。 默认为 0.0f。 |
SetInsets(Single)
对顶部、底部、左侧和右侧使用相同的值设置 CompositionNineGridBrush 的内插。 默认为 0.0f。
public:
virtual void SetInsets(float inset) = SetInsets;
/// [Windows.Foundation.Metadata.Overload("SetInsets")]
void SetInsets(float const& inset);
[Windows.Foundation.Metadata.Overload("SetInsets")]
public void SetInsets(float inset);
function setInsets(inset)
Public Sub SetInsets (inset As Single)
参数
- inset
-
Single
float
要用于顶部、底部、左侧和右侧的嵌入值。
- 属性
另请参阅
适用于
SetInsets(Single, Single, Single, Single)
使用顶部、底部、左侧和右侧的指定值设置 CompositionNineGridBrush 的内插。 默认为 0.0f。
public:
virtual void SetInsets(float left, float top, float right, float bottom) = SetInsets;
/// [Windows.Foundation.Metadata.Overload("SetInsetsWithValues")]
void SetInsets(float const& left, float const& top, float const& right, float const& bottom);
[Windows.Foundation.Metadata.Overload("SetInsetsWithValues")]
public void SetInsets(float left, float top, float right, float bottom);
function setInsets(left, top, right, bottom)
Public Sub SetInsets (left As Single, top As Single, right As Single, bottom As Single)
参数
- left
-
Single
float
图像左侧的插图。
- top
-
Single
float
图像顶部的插图。
- right
-
Single
float
图像右侧的插图。
- bottom
-
Single
float
图像底部的插图。
- 属性