Show / Hide Table of Contents

Class AssignmentParameter

An assignment parameter.

Inheritance
System.Object
SpiceObject
Parameter
AssignmentParameter
Inherited Members
SpiceObject.LineInfo
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 Source

AssignmentParameter()

Declaration
public AssignmentParameter()
| Improve this Doc View Source

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 Source

Arguments

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>
| Improve this Doc View Source

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
| Improve this Doc View Source

Name

Gets or sets the name of the assignment parameter.

Declaration
public string Name { get; set; }
Property Value
Type Description
System.String
| Improve this Doc View Source

Value

Gets or sets the value of assignment parameter.

Declaration
public override string Value { get; set; }
Property Value
Type Description
System.String
Overrides
Parameter.Value
| Improve this Doc View Source

Values

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 Source

Clone()

Clones the object.

Declaration
public override SpiceObject Clone()
Returns
Type Description
SpiceObject

A clone of the object.

Overrides
SpiceObject.Clone()
| Improve this Doc View Source

ToString()

Gets the string representation of the parameter.

Declaration
public override string ToString()
Returns
Type Description
System.String
Overrides
Parameter.ToString()
  • Improve this Doc
  • View Source
In This Article
Back to top Generated by DocFX