Class ReplaySnapshotCommandSettings
Replays the layer snapshot and returns the resulting bitmap.
public sealed class ReplaySnapshotCommandSettings : ICommand
- Inheritance
-
ReplaySnapshotCommandSettings
- Implements
- Inherited Members
Properties
CommandName
Gets the name of the command.
[JsonIgnore]
public string CommandName { get; }
Property Value
FromStep
The first step to replay from (replay from the very start if not specified).
[JsonPropertyName("fromStep")]
[JsonIgnore(Condition = JsonIgnoreCondition.WhenWritingDefault)]
public long? FromStep { get; set; }
Property Value
- long?
Scale
The scale to apply while replaying (defaults to 1).
[JsonPropertyName("scale")]
[JsonIgnore(Condition = JsonIgnoreCondition.WhenWritingDefault)]
public double? Scale { get; set; }
Property Value
SnapshotId
The id of the layer snapshot.
[JsonPropertyName("snapshotId")]
public string SnapshotId { get; set; }
Property Value
ToStep
The last step to replay to (replay till the end if not specified).
[JsonPropertyName("toStep")]
[JsonIgnore(Condition = JsonIgnoreCondition.WhenWritingDefault)]
public long? ToStep { get; set; }
Property Value
- long?