IUIAnimationManager::GetStoryboardFromTag method (uianimation.h)

Gets the storyboard with the specified tag.

Syntax

HRESULT GetStoryboardFromTag(
  [in, optional] IUnknown               *object,
  [in]           UINT32                 id,
  [out]          IUIAnimationStoryboard **storyboard
);

Parameters

[in, optional] object

The object portion of the tag. This parameter can be NULL.

[in] id

The identifier portion of the tag.

[out] storyboard

The storyboard that matches the specified tag, or NULL if no match is found.

Return value

If the method succeeds, it returns S_OK. Otherwise, it returns an HRESULT error code. See Windows Animation Error Codes for a list of error codes.

Remarks

A tag is a pairing of an integer identifier (id) with a COM object (object). An application can use tags to identify animation variables and storyboards. NULL is a valid object component of a tag; therefore, the object parameter can be NULL.

Tags are not necessarily unique; this method returns UI_E_AMBIGUOUS_MATCH if more than one storyboard exists with the specified tag.

Requirements

Requirement Value
Minimum supported client Windows 7, Windows Vista and Platform Update for Windows Vista [desktop apps | UWP apps]
Minimum supported server None supported
Target Platform Windows
Header uianimation.h
DLL UIAnimation.dll

See also

IUIAnimationManager

IUIAnimationStoryboard::GetTag

IUIAnimationStoryboard::SetTag