Class ThumbnailRequestBuilder.ThumbnailRequestBuilderGetQueryParameters
- Namespace
- Autodesk.ModelDerivative.Designdata.Item.Thumbnail
- Assembly
- Autodesk.ModelDerivative.dll
Downloads the thumbnail for the source file.
public class ThumbnailRequestBuilder.ThumbnailRequestBuilderGetQueryParameters
- Inheritance
-
ThumbnailRequestBuilder.ThumbnailRequestBuilderGetQueryParameters
- Inherited Members
Properties
Height
Height of thumbnail Possible values: 100, 200, 400 If height is omitted, but width is specified, the implicit value for height will match width. If both width and height are omitted, the server will return a thumbnail closest to a width of 200, if available.
[QueryParameter("height")]
public int? Height { get; set; }
Property Value
- int?
Width
Width of thumbnail Possible values: 100, 200, 400 If width is omitted, but height is specified, the implicit value for width will match height. If both width and height are omitted, the server will return a thumbnail closest to a width of 200, if available.
[QueryParameter("width")]
public int? Width { get; set; }
Property Value
- int?