Interface ILayoutable
Defines interface for elements which can be placed by ILayoutManager
Namespace:
Assembly: .dll
Syntax
public interface ILayoutable
Methods
getLayoutHeight()
Get height of layout placement rect
Declaration
public abstract int getLayoutHeight()
Returns
Type | Description |
---|---|
int | The height in pixels |
getLayoutRect()
Gets Rect with layout placement
Declaration
public abstract Rect getLayoutRect()
Returns
Type | Description |
---|---|
android.graphics.Rect | The layout rect |
getLayoutWidth()
Get width of layout placement rect
Declaration
public abstract int getLayoutWidth()
Returns
Type | Description |
---|---|
int | The width in pixels |
layoutArea(int left, int top, int right, int bottom)
Places this instance relative to parent com.scichart.charting.visuals.SciChartSurface
Declaration
public abstract void layoutArea(int left, int top, int right, int bottom)
Parameters
Type | Name | Description |
---|---|---|
int | left | left position of area relative to parent com.scichart.charting.visuals.SciChartSurface |
int | top | top position of area relative to parent com.scichart.charting.visuals.SciChartSurface |
int | right | right position of area relative to parent com.scichart.charting.visuals.SciChartSurface |
int | bottom | bottom position of area relative to parent com.scichart.charting.visuals.SciChartSurface |