Property | Type | Description | |
---|---|---|---|
ApplyPlotTemplate | |||
AssignVariable | void | ||
ParseContext | System | ||
RaiseInputPrompt | void | ||
RaiseLastPlotChanged | void | ||
RaiseNotification | void | ||
RaisePause | void | ||
RaiseVariableChanged | void | ||
RaiseVariableCreated | void | ||
RaiseVariableRemoved | void |
Method | Description | |
---|---|---|
AddConstant ( String name, IConstants constant ) : |
Adds a constant to the context.
|
|
AddFunction ( String name, IFunction func ) : |
Adds a function to the context.
|
|
AssignVariable ( String name, |
Assigns a value to a symbolic name.
|
|
ChangeLastPlotTo ( |
Sets the lastplot to be used to the given value.
|
|
Clear ( ) : |
Clears the list of assigned variables.
|
|
FindConstants ( String name ) : IConstants |
Finds the constant with the specified name.
|
|
FindFunction ( String name ) : IFunction |
Finds the function instance with the specified name.
|
|
GetDefaultProperties ( String binName ) : Value>.ReadOnlyDictionary |
Gets the key value pairs of the specified bin.
|
|
GetSymbolContext ( String name ) : |
Gets the exact context of the given symbol.
|
|
GetVariable ( String name ) : |
Gets the value with the specific symbolic name.
|
|
GetVariableContext ( String name ) : |
Gets the exact context of the given variable.
|
|
LoadFunction ( String symbolName ) : IFunction |
Tries to load a function from a given file.
|
|
ParseContext ( ) : System |
Creates a new top context.
|
|
ParseContext ( |
Creates a new context with a custom parent (nested, i.e. more local layer).
|
|
RemoveConstant ( String name ) : |
Removes a constant from the context.
|
|
RemoveFunction ( String name ) : |
Removes a function from the context.
|
|
RenameConstant ( String oldName, String newName ) : |
Renames a constant from the context.
|
|
RenameFunction ( String oldName, String newName ) : |
Renames a function from the context.
|
|
SetDefaultProperty ( String binName, String propertyName, |
Sets a template property in the dictionary.
|
Method | Description | |
---|---|---|
ApplyPlotTemplate ( |
Applies the template set for plots.
|
|
AssignVariable ( |
Assigns a variable to the given context.
|
|
ParseContext ( Value>.IDictionary |
||
RaiseInputPrompt ( |
Raises the input prompt if in interactive mode.
|
|
RaiseLastPlotChanged ( |
This is raised when the last plot has been changed.
|
|
RaiseNotification ( |
Raises the notification if in interactive mode.
|
|
RaisePause ( |
Raises the input prompt if in interactive mode.
|
|
RaiseVariableChanged ( |
This is raised when a variable has changed.
|
|
RaiseVariableCreated ( |
This is raised when a variable has been created.
|
|
RaiseVariableRemoved ( |
This is raised when a variable has been removed.
|
public AddConstant ( String name, IConstants constant ) : |
||
name | String | /// The name of the constant. /// |
constant | IConstants | /// The class instance of the constant. /// |
return |
public AddFunction ( String name, IFunction func ) : |
||
name | String | /// The name of the function. /// |
func | IFunction | /// The IFunction instance to add. /// |
return |
public AssignVariable ( String name, |
||
name | String | /// The name to assign a value to. /// |
value | /// The value of the symbol. /// | |
return |
public ChangeLastPlotTo ( |
||
plot | The plot to change to. | |
return |
public FindConstants ( String name ) : IConstants | ||
name | String | /// The symbolic name to retrieve. /// |
return | IConstants |
public FindFunction ( String name ) : IFunction | ||
name | String | /// The symbolic name to retrieve. /// |
return | IFunction |
public GetDefaultProperties ( String binName ) : Value>.ReadOnlyDictionary |
||
binName | String | The name of the template bin. |
return | Value>.ReadOnlyDictionary |
public GetSymbolContext ( String name ) : |
||
name | String | The name of the symbol. |
return |
public GetVariable ( String name ) : |
||
name | String | /// The variable's name. /// |
return |
public GetVariableContext ( String name ) : |
||
name | String | The name of the variable. |
return |
public LoadFunction ( String symbolName ) : IFunction | ||
symbolName | String | /// The name of the function (equals the name of the file). /// |
return | IFunction |
public ParseContext ( |
||
parentContext | /// The parent context for the new context. /// | |
return | System |
public RemoveConstant ( String name ) : |
||
name | String | /// The name of the constant. /// |
return |
public RemoveFunction ( String name ) : |
||
name | String | /// The name of the function. /// |
return |
public RenameConstant ( String oldName, String newName ) : |
||
oldName | String | /// The old name of the constant. /// |
newName | String | /// The new name for the constant. /// |
return |
public RenameFunction ( String oldName, String newName ) : |
||
oldName | String | /// The old name of the function. /// |
newName | String | /// The new name for the function. /// |
return |
public SetDefaultProperty ( String binName, String propertyName, |
||
binName | String | The category of the default property. |
propertyName | String | The name of the property. |
propertyValue | The default value of the property. | |
return |