Share via


IXRStoryboard::GetChildren (Compact 2013)

3/28/2014

This method retrieves the collection of child animations as objects derived from IXRTimeline.

Syntax

virtual HRESULT STDMETHODCALLTYPE GetChildren(
    __out IXRTimelineCollection** ppChildren
) = 0;

Parameters

  • ppChildren
    [out] On return, a pointer to an IXRTimelineCollection pointer that contains the child animations and storyboards for this storyboard object.

Return Value

Returns an HRESULT that indicates success or failure.

Remarks

To add items to or otherwise change the existing collection, you can either use methods on IXRTimelineCollection, or use implicit collection syntax in Silverlight 3 XAML. However, you cannot replace the collection with a different object. For more information about how to define this element in the source XAML for your application, see the Storyboard Class on MSDN.

.NET Framework Equivalent

System.Windows.Media.Animation.Storyboard.Children

Requirements

Header

XamlRuntime.h

sysgen

SYSGEN_XAML_RUNTIME

See Also

Reference

IXRStoryboard