Table of Contents

Interface IDiagramElementParam

Namespace
StockSharp.Diagram
Assembly
StockSharp.Diagram.Core.dll

The diagram element parameter.

public interface IDiagramElementParam : IPersistable, INotifyPropertyChanging, INotifyPropertyChanged
Inherited Members
Extension Methods

Properties

Attributes

Attributes.

IList<Attribute> Attributes { get; }

Property Value

IList<Attribute>

Category

Category.

string Category { get; set; }

Property Value

string

Description

The parameter description.

string Description { get; set; }

Property Value

string

DisplayName

The displayed name.

string DisplayName { get; set; }

Property Value

string

IgnoreOnSave

To ignore when saving.

bool IgnoreOnSave { get; set; }

Property Value

bool

IsBasicSetting

Show the parameter on basic settings page.

bool IsBasicSetting { get; }

Property Value

bool

IsDefault

The default value is specified.

bool IsDefault { get; }

Property Value

bool

IsParam

The changeable parameter.

bool IsParam { get; set; }

Property Value

bool

Name

Parameter name.

string Name { get; set; }

Property Value

string

NotifyOnChanged

Raise changed event when property is changed.

bool NotifyOnChanged { get; set; }

Property Value

bool

Type

Parameter type.

Type Type { get; }

Property Value

Type

Value

The parameter value.

object Value { get; set; }

Property Value

object

Methods

SetValueWithIgnoreOnSave(object)

Set value and ignore it on save settings.

void SetValueWithIgnoreOnSave(object value)

Parameters

value object

Value.