Description
The VideoThumb
property provides a link to the thumbnail video associated with a package in the Sandbox environment. This property is useful for displaying a preview or promotional video of the package, enhancing the user's understanding and engagement with the package content.
Usage
To access the VideoThumb
property, you need to have an instance of the Package
class. Once you have the instance, you can retrieve the URL of the thumbnail video as a string.
Example
// Example of accessing the VideoThumb property
Package myPackage = new Package();
string videoThumbnailUrl = myPackage.VideoThumb;
// Use the videoThumbnailUrl to display or process the video thumbnail
// For example, setting it as a source in a video player component
videoPlayerComponent.Source = videoThumbnailUrl;