Components | All | New | MacOS | Windows | Linux | iOS | ||||
Examples | Mac & Win | Server | Client | Guides | Statistic | FMM | Blog | Deprecated | Old |
Returns the type at the given index (zero based).
Component | Version | macOS | Windows | Linux | Server | iOS SDK |
Container | 1.4 | ✅ Yes | ✅ Yes | ✅ Yes | ✅ Yes | ✅ Yes |
Parameter | Description | Example |
---|---|---|
Container | The container field or value to inspect. | $container |
index | The index of the the item to query in the container. | 0 |
Export all streams in container to individual files:
Set Variable [$container; Value:Test::Image]
#where to save
Set Variable [$DesktopFolder; Value:MBS("Folders.UserDesktop")]
#loop over streams in container
Set Variable [$count; Value:MBS( "Container.GetCount"; $container )]
Set Variable [$index; Value:0]
Loop
#query the type of stream with given index
Set Variable [$type; Value:MBS( "Container.GetType"; $container; $index )]
#write it to a file
Set Variable [$path; Value:$DesktopFolder & "/" & $type]
Set Variable [$r; Value:MBS( "Container.Export"; $container; $index; $path )]
#next
Set Variable [$index; Value:$index + 1]
Exit Loop If [$count = $index]
End Loop
This function checks for a license.
Created 18th August 2014, last changed 6th November 2018