Compositor.CreateInsetClip Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Overloads
CreateInsetClip() |
Creates an instance of InsetClip. |
CreateInsetClip(Single, Single, Single, Single) |
Creates an instance of InsetClip. |
CreateInsetClip()
public:
virtual InsetClip ^ CreateInsetClip() = CreateInsetClip;
/// [Windows.Foundation.Metadata.Overload("CreateInsetClip")]
InsetClip CreateInsetClip();
[Windows.Foundation.Metadata.Overload("CreateInsetClip")]
public InsetClip CreateInsetClip();
function createInsetClip()
Public Function CreateInsetClip () As InsetClip
Returns
Returns the created InsetClip object.
- Attributes
See also
Applies to
CreateInsetClip(Single, Single, Single, Single)
public:
virtual InsetClip ^ CreateInsetClip(float leftInset, float topInset, float rightInset, float bottomInset) = CreateInsetClip;
/// [Windows.Foundation.Metadata.Overload("CreateInsetClipWithInsets")]
InsetClip CreateInsetClip(float const& leftInset, float const& topInset, float const& rightInset, float const& bottomInset);
[Windows.Foundation.Metadata.Overload("CreateInsetClipWithInsets")]
public InsetClip CreateInsetClip(float leftInset, float topInset, float rightInset, float bottomInset);
function createInsetClip(leftInset, topInset, rightInset, bottomInset)
Public Function CreateInsetClip (leftInset As Single, topInset As Single, rightInset As Single, bottomInset As Single) As InsetClip
Parameters
- leftInset
-
Single
float
Inset from the left of the visual.
- topInset
-
Single
float
Inset from the top of the visual.
- rightInset
-
Single
float
Inset from the right of the visual.
- bottomInset
-
Single
float
Inset from the bottom of the visual.
Returns
Returns the created InsetClip object.
- Attributes