FileSystemClientGetPrintable(Int64, Guid, NullableDecimal, NullableDecimal, NullablePrintSizeUnit) Method |
To get started, call one of the following methods:
- Anysense.API.Client.V1.ApiClient.Create
- Anysense.API.Client.V1.ApiClient.CreateAsync
- Anysense.API.Client.V1.ApiClient.CreateWithToken
- Anysense.API.Client.V1.ApiClient.CreateWithTokenAsync
See Anysense.API.Client.Shared.BaseClient<T> for documentation on these methods.
Gets an image scaled to match submitted max width or max height and converted to 300 dpi.
If the image is smaller than the requested dimensions, the original image is returned.
Namespace: Anysense.API.Client.V1Assembly: Anysense.API.Client (in Anysense.API.Client.dll) Version: 1.31.16+70a1cd56b0e0edeea15f29c3f401e7c22c5026a4
Syntaxpublic FileResult GetPrintable(
long fileSystemId,
Guid fileSystemEntryId,
decimal? maxHeight,
decimal? maxWidth,
PrintSizeUnit? unit
)
Parameters
- fileSystemId Int64
- The FormId of the FileSystem Form
- fileSystemEntryId Guid
- The ClientId of the FileSystem FormData file to download
- maxHeight NullableDecimal
- The maxium allowed height of the returned image.
- maxWidth NullableDecimal
- The maxium allowed width of the returned image.
- unit NullablePrintSizeUnit
- The UnitType to use for scaling - centimeters or inches
Return Value
FileResult
See Also