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.
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.
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 of accessing the ThumbTall property var package = new Package(); string tallThumbnailUrl = package.ThumbTall; // Use the URL to display the image in your application