C# Class YAMP.SetFunction

Inheritance: SystemFunction
Datei anzeigen Open project: FlorianRappl/YAMP Class Usage Examples

Public Methods

Method Description
AlterProperty ( Object parent, String name, Value value ) : void

Changes a given property to a certain value using the available value converter.

AlterSeriesProperty ( Object parent, Int32 series, String property, Value value ) : void

Changes a given property to a certain value using the available value converter.

SetFunction ( ParseContext context ) : System

Private Methods

Method Description
Function ( MatrixValue series, StringValue property, Value newValue ) : void
Function ( PlotValue plot, MatrixValue series, StringValue property, Value newValue ) : void
Function ( PlotValue plot, ScalarValue series, StringValue property, Value newValue ) : void
Function ( PlotValue plot, StringValue property, Value newValue ) : void
Function ( ScalarValue series, StringValue property, Value newValue ) : void
Function ( StringValue property, Value newValue ) : void

Method Details

AlterProperty() public static method

Changes a given property to a certain value using the available value converter.
public static AlterProperty ( Object parent, String name, Value value ) : void
parent Object The object that should contain the property.
name String The name of the property (property needs to have a converter specified).
value Value The new value of the property.
return void

AlterSeriesProperty() public static method

Changes a given property to a certain value using the available value converter.
public static AlterSeriesProperty ( Object parent, Int32 series, String property, Value value ) : void
parent Object The object that should contain the property.
series System.Int32 The series (0..(n-1)) that should be changed.
property String The name of the property (property needs to have a converter specified).
value Value The new value of the property.
return void

SetFunction() public method

public SetFunction ( ParseContext context ) : System
context ParseContext
return System