string VideoThumb { get; set; }

book_4_sparkGenerated
code_blocksInput

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 a short video clip that represents the package, enhancing the visual appeal and providing users with a quick overview of the package's 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 by simply accessing the VideoThumb property.

Example

// Assuming 'package' is an instance of Sandbox.Package
string videoThumbnailUrl = package.VideoThumb;

// Use the URL to display the video thumbnail in your application
// For example, you might set it as the source of a video player or an image element