Class AssignmentParameter
An assignment parameter.
Inherited Members
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
Namespace: SpiceSharpParser.Models.Netlist.Spice.Objects.Parameters
Assembly: SpiceSharpParser.dll
Syntax
public class AssignmentParameter : Parameter
Constructors
| Improve this Doc View SourceAssignmentParameter()
Declaration
public AssignmentParameter()
AssignmentParameter(String, List<String>, List<String>, Boolean, SpiceLineInfo)
Declaration
public AssignmentParameter(string name, List<string> arguments, List<string> values, bool hasFunctionSyntax, SpiceLineInfo lineInfo)
Parameters
Type | Name | Description |
---|---|---|
System.String | name | |
System.Collections.Generic.List<System.String> | arguments | |
System.Collections.Generic.List<System.String> | values | |
System.Boolean | hasFunctionSyntax | |
SpiceLineInfo | lineInfo |
Properties
| Improve this Doc View SourceArguments
Gets or sets the arguments of the assignment parameters.
Declaration
public List<string> Arguments { get; set; }
Property Value
Type | Description |
---|---|
System.Collections.Generic.List<System.String> |
HasFunctionSyntax
Gets or sets a value indicating whether the assignment parameter has "()" function syntax.
Declaration
public bool HasFunctionSyntax { get; set; }
Property Value
Type | Description |
---|---|
System.Boolean |
Name
Gets or sets the name of the assignment parameter.
Declaration
public string Name { get; set; }
Property Value
Type | Description |
---|---|
System.String |
Value
Gets or sets the value of assignment parameter.
Declaration
public override string Value { get; set; }
Property Value
Type | Description |
---|---|
System.String |
Overrides
| Improve this Doc View SourceValues
Gets or sets the values of assignment parameter.
Declaration
public List<string> Values { get; set; }
Property Value
Type | Description |
---|---|
System.Collections.Generic.List<System.String> |
Methods
| Improve this Doc View SourceClone()
Clones the object.
Declaration
public override SpiceObject Clone()
Returns
Type | Description |
---|---|
SpiceObject | A clone of the object. |
Overrides
| Improve this Doc View SourceToString()
Gets the string representation of the parameter.
Declaration
public override string ToString()
Returns
Type | Description |
---|---|
System.String |