Class Print
Represents a printed data that has columns and rows.
Inheritance
System.Object
Print
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)
System.Object.ToString()
Namespace: SpiceSharpParser.ModelReaders.Netlist.Spice.Readers.Controls.Prints
Assembly: SpiceSharpParser.dll
Syntax
public class Print
Constructors
| Improve this Doc View SourcePrint(String)
Initializes a new instance of the Print class.
Declaration
public Print(string name)
Parameters
Type | Name | Description |
---|---|---|
System.String | name | The name of print. |
Properties
| Improve this Doc View SourceColumnNames
Gets the columns names.
Declaration
public List<string> ColumnNames { get; }
Property Value
Type | Description |
---|---|
System.Collections.Generic.List<System.String> |
Name
Gets the name of the print.
Declaration
public string Name { get; }
Property Value
Type | Description |
---|---|
System.String |
Rows
Gets the rows.
Declaration
public List<Row> Rows { get; }
Property Value
Type | Description |
---|---|
System.Collections.Generic.List<Row> |
Methods
| Improve this Doc View SourceToRaw()
Convert print data to raw data.
Declaration
public Tuple<string, IEnumerable<string>, IEnumerable<double[]>> ToRaw()
Returns
Type | Description |
---|---|
System.Tuple<System.String, System.Collections.Generic.IEnumerable<System.String>, System.Collections.Generic.IEnumerable<System.Double[]>> |