string ThumbWide { get; set; }

robot_2Generated
code_blocksInput

Description

The ThumbWide property provides a link to the wide thumbnail image of the package. This image is typically used in user interfaces to visually represent the package in a wider format, offering a more detailed view compared to standard thumbnails.

Usage

To access the wide thumbnail image of a package, use the ThumbWide property. This property returns a string containing the URL of the image.

Example

// Example of accessing the ThumbWide property
var package = new Package();
string wideThumbnailUrl = package.ThumbWide;
// Use the URL to display the image in a UI component