API Reference
Command
New-ImageStoryScene
Groups resolved panels into one timed visual-story scene.
Remarks
Groups resolved panels into one timed visual-story scene.
Examples
Create a scene from a resolved text panel
$panel = New-ImageStoryPanel -Id 'summary' -Text 'Deployment completed.' -Emphasized
New-ImageStoryScene -Id 'result' -Title 'Deployment result' -Panels $panel -DurationSeconds 3
Common Parameters
This command supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable.
For more information, see about_CommonParameters.
Syntax
New-ImageStoryScene [-DurationSeconds <Double>] -Id <String> [-Layout <Focus|Split|Stacked>] -Panels <ImageStoryPanelSpec[]> -Title <String> [<CommonParameters>]#Parameter set:
All Parameter SetsParameters
- DurationSeconds Double
- Scene display duration.
- Id String
- Stable scene identifier.
- Layout VisualStorySceneLayout
- Panel arrangement.
- Possible values:
Focus,Split,Stacked - Panels ImageStoryPanelSpec[]
- Resolved panels in display order.
- Title String
- Visible scene heading.
Outputs
ImagePlayground.PowerShell.Stories.ImageStorySceneSpec: PowerShell-friendly resolved scene specification for New-ImageStory.