Interface IChartDrawingsCollection
Access to the chart drawingsCollection collection
public interface IChartDrawingsCollection
Methods
Add chart drawing to the collection
Declaration
void Add(IDrawing drawing)
Parameters
Declaration
IDrawing FindById(string drawingId)
Parameters
Type |
Name |
Description |
string |
drawingId |
|
Returns
Get all chart drawingsCollection assigned to specified symbol
Declaration
List<IDrawing> GetAll(Symbol symbol = null)
Parameters
Type |
Name |
Description |
Symbol |
symbol |
|
Returns
Remove specified chart drawing from collection
Declaration
void Remove(IDrawing drawing)
Parameters
Events
The Added events occured, when new chart drawing was added to collection
Declaration
event Action<DrawingEventArgs> Added
Event Type
The Moved events occured, when chart drawing was moved
Declaration
event Action<DrawingEventArgs> Moved
Event Type
The Removed events occured, when chart drawing was removed from the collection
Declaration
event Action<DrawingEventArgs> Removed
Event Type
The SelectionChanged events occured, when selected chart drawing was changed
Declaration
event Action<DrawingSelectionEventArgs> SelectionChanged
Event Type