Class PictureTile
Serialized fragment of layer picture along with its offset within the layer.
public sealed record PictureTile : IEquatable<PictureTile>
- Inheritance
-
PictureTile
- Implements
- Inherited Members
Constructors
PictureTile(double, double, string)
Serialized fragment of layer picture along with its offset within the layer.
public PictureTile(double X, double Y, string Picture)
Parameters
XdoubleOffset from owning layer left boundary
YdoubleOffset from owning layer top boundary
PicturestringBase64-encoded snapshot data. (Encoded as a base64 string when passed over JSON)
Properties
Picture
Base64-encoded snapshot data. (Encoded as a base64 string when passed over JSON)
public string Picture { get; init; }
Property Value
X
Offset from owning layer left boundary
public double X { get; init; }
Property Value
Y
Offset from owning layer top boundary
public double Y { get; init; }