CompositionEasingFunction.CreateStepEasingFunction 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
CreateStepEasingFunction(Compositor) |
Creates a new instance of StepEasingFunction. |
CreateStepEasingFunction(Compositor, Int32) |
Creates a new instance of StepEasingFunction with the specified step count. |
CreateStepEasingFunction(Compositor)
Creates a new instance of StepEasingFunction.
public:
static StepEasingFunction ^ CreateStepEasingFunction(Compositor ^ owner);
/// [Windows.Foundation.Metadata.Overload("CreateStepEasingFunction")]
static StepEasingFunction CreateStepEasingFunction(Compositor const& owner);
[Windows.Foundation.Metadata.Overload("CreateStepEasingFunction")]
public static StepEasingFunction CreateStepEasingFunction(Compositor owner);
function createStepEasingFunction(owner)
Public Shared Function CreateStepEasingFunction (owner As Compositor) As StepEasingFunction
Parameters
- owner
- Compositor
The compositor used to create the easing function.
Returns
The created StepEasingFunction
object.
- Attributes
Applies to
CreateStepEasingFunction(Compositor, Int32)
Creates a new instance of StepEasingFunction with the specified step count.
public:
static StepEasingFunction ^ CreateStepEasingFunction(Compositor ^ owner, int stepCount);
/// [Windows.Foundation.Metadata.Overload("CreateStepEasingFunctionWithStepCount")]
static StepEasingFunction CreateStepEasingFunction(Compositor const& owner, int const& stepCount);
[Windows.Foundation.Metadata.Overload("CreateStepEasingFunctionWithStepCount")]
public static StepEasingFunction CreateStepEasingFunction(Compositor owner, int stepCount);
function createStepEasingFunction(owner, stepCount)
Public Shared Function CreateStepEasingFunction (owner As Compositor, stepCount As Integer) As StepEasingFunction
Parameters
- owner
- Compositor
The compositor used to create the easing function.
- stepCount
-
Int32
int
The number of steps between the starting value and the end value.
Returns
The created StepEasingFunction
object.
- Attributes