Description
The ThumbWide
property provides a link to the wide thumbnail image of a package in the Sandbox environment. This property is useful for displaying a visual representation of the package in a user interface, particularly when a wider aspect ratio is preferred.
Usage
To access the wide thumbnail image of a package, use the ThumbWide
property. This property returns a string
that contains the URL to the image. You can use this URL to display the image in your application.
Example
// Example of accessing the ThumbWide property
Sandbox.Package myPackage = GetPackage();
string wideThumbnailUrl = myPackage.ThumbWide;
// Use the URL to display the image in a UI component
DisplayImage(wideThumbnailUrl);