Show / Hide Table of Contents

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 Source

Print(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 Source

ColumnNames

Gets the columns names.

Declaration
public List<string> ColumnNames { get; }
Property Value
Type Description
System.Collections.Generic.List<System.String>
| Improve this Doc View Source

Name

Gets the name of the print.

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

Rows

Gets the rows.

Declaration
public List<Row> Rows { get; }
Property Value
Type Description
System.Collections.Generic.List<Row>

Methods

| Improve this Doc View Source

ToRaw()

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[]>>

Extension Methods

PrintCsvWriter.ToCsv(Print, String, String, String, Nullable<Boolean>)
  • Improve this Doc
  • View Source
In This Article
Back to top Generated by DocFX