Skip to content

AspTab

Summary

Represents an active symbol panel tab.

Signature

1
public abstract interface AspTab

Namespace

cAlgo.API

Properties

Id

Summary

Returns unique ID of the current tab.

Signature

1
public abstract string Id {get;}

Return Value

string

Title

Summary

Returns title of the current tab.

Signature

1
public abstract string Title {get;}

Return Value

string

Child

Summary

Get / set content of current tab.

Signature

1
public abstract ControlBase Child {get; set;}

Return Value

ControlBase

Index

Summary

Get / set index of current tab (Must be greater than zero).

Signature

1
public abstract int Index {get; set;}

Return Value

int

IsSelected

Summary

Get / set selected state of current tab.

Signature

1
public abstract bool IsSelected {get; set;}

Return Value

bool

Events

IsSelectedChanged

Summary

Occurs after tab IsSelected value change.

Signature

1
public abstract event Action<AspTabIsSelectedChangedEventArgs> IsSelectedChanged;