string ThumbTall { get; set; }

book_4_sparkGenerated
code_blocksInput

Description

The ThumbTall property provides a link to the tall thumbnail image of a package. This image is typically used in user interfaces where a taller aspect ratio is preferred for displaying package thumbnails.

Usage

To access the tall thumbnail image of a package, use the ThumbTall property. This property returns a string that contains the URL of the image.

Example

// Example of accessing the ThumbTall property
var package = new Package();
string tallThumbnailUrl = package.ThumbTall;
// Use the URL to display the image in your application