Added IsRegionShape to BaseShape

This commit is contained in:
Jaex 2016-08-09 00:15:52 +03:00
parent 36b460dfda
commit 14ecc618e9
2 changed files with 3 additions and 0 deletions

View file

@ -86,6 +86,8 @@ public virtual bool IsValidShape
}
}
public virtual bool IsRegionShape { get; } = false;
public virtual bool FixedSize { get; } = false;
internal ShapeManager Manager { get; set; }

View file

@ -27,5 +27,6 @@ namespace ShareX.ScreenCaptureLib
{
public abstract class BaseRegionShape : BaseShape
{
public override bool IsRegionShape { get; } = true;
}
}