Public Sub SetThumbnail( _ ByVal thumbnail As BitmapSource _ )
public void SetThumbnail( BitmapSource thumbnail )
Parameters
- thumbnail
- The thumbnail.
Public Sub SetThumbnail( _ ByVal thumbnail As BitmapSource _ )
public void SetThumbnail( BitmapSource thumbnail )
| Exception | Description |
|---|---|
| ArcGIS.Core.CalledOnWrongThreadException | This method or property must be called within the lambda passed to QueuedTask.Run. |
{
//Set the thumbnail to an image on disk, i.e. C:\Pictures\MyPicture.png.
BitmapImage image = new(new Uri(imagePath, UriKind.RelativeOrAbsolute));
oldBookmark.SetThumbnail(image);
}
Target Platforms: Windows 11 Home, Pro, Enterprise (64 bit)