add ability to specify offset X and Y coordinates (not really used except in custom editor hosting situations)

This commit is contained in:
Michael Becker 2023-06-27 19:55:05 -04:00
parent 0e3bb16f8e
commit 47a69e77cb

View File

@ -192,6 +192,9 @@ namespace UniversalEditor.ObjectModels.Multimedia.Picture
InitializeBitmapData(ref bitmapData, Width, Height);
}
public int Left { get; set; } = 0;
public int Top { get; set; } = 0;
private int mvarWidth = 1;
public int Width
{