概要
チャートフレームの基本インターフェースです。
シグネチャ
1 |
public abstract interface Frame
Namespace
cAlgo.API
メソッド
Attach (2)
Attach (1 of 2)
概要
フレームがアタッチされた時に発生します。
シグネチャ
1 |
public abstract bool Attach()
戻り値
bool
Attach (2 of 2)
概要
フレームをメインチャートコンテナにアタッチします。
シグネチャ
1 |
public abstract bool Attach(ChartContainer targetContainer)
パラメータ
名前 | 型 | 説明 |
---|---|---|
targetContainer | ChartContainer |
戻り値
bool
Detach
概要
フレームがデタッチされた時に発生します。
シグネチャ
1 |
public abstract bool Detach()
戻り値
bool
プロパティ
Id
概要
フレームのIDを返します。
シグネチャ
1 |
public abstract string Id {get;}
戻り値
string
ChartContainer
概要
フレームコンテナを返します。
シグネチャ
1 |
public abstract ChartContainer ChartContainer {get;}
戻り値
ChartContainer
Width
概要
フレームの現在の幅を返します。
シグネチャ
1 |
public abstract double Width {get;}
戻り値
double
Height
概要
フレームの現在の高さを返します。
シグネチャ
1 |
public abstract double Height {get;}
戻り値
double
IsAttached
概要
フレームがアタッチされている場合は true を返し、それ以外の場合は false を返します。
シグネチャ
1 |
public abstract bool IsAttached {get;}
戻り値
bool
Index
概要
コンテナ内のフレームインデックスを取得/設定します。
シグネチャ
1 |
public abstract int Index {get;} set;}
戻り値
int
イベント
SizeChanged
概要
フレームサイズが変更された時に発生します。
シグネチャ
1 |
public abstract event Action<FrameSizeChangedEventArgs> SizeChanged;
Attached
概要
フレームがアタッチされた時に発生します。
シグネチャ
1 |
public abstract event Action<FrameAttachedEventArgs> Attached;
Detached
概要
フレームがデタッチされた時に発生します。
シグネチャ
1 |
public abstract event Action<FrameDetachedEventArgs> Detached;
ContainerChanged
概要
フレームコンテナが変更された時に発生します。
シグネチャ
1 |
public abstract event Action<FrameContainerChangedEventArgs> ContainerChanged;