Interface IST_2DBox
Namespace: STTypes
Assembly: STTypes.dll
Syntax
[Guid("B14FAD9B-5456-4D63-B38E-DA461BA8D624")]
public interface IST_2DBox
Properties
IsEmpty
Empty box flag - True if box contains no area
Declaration
bool IsEmpty { get; set; }
Property Value
Type | Description |
---|---|
bool |
Max
Maximum corner point (top-right)
Declaration
IST_2DPoint Max { get; set; }
Property Value
Type | Description |
---|---|
IST_2DPoint |
Min
Minimum corner point (bottom-left)
Declaration
IST_2DPoint Min { get; set; }
Property Value
Type | Description |
---|---|
IST_2DPoint |
Methods
Assign(IST_2DBox)
Copy values from another box
Declaration
void Assign(IST_2DBox Box)
Parameters
Type | Name | Description |
---|---|---|
IST_2DBox | Box | Source box to copy from |