Skip to content

M_CodeJam_TableData_FixedWidthFormat_Print

Andrew Koryavchenko edited this page Jun 17, 2018 · 2 revisions

FixedWidthFormat.Print Method

Prints full data table

Namespace: CodeJam.TableData
Assembly: CodeJam.Blocks (in CodeJam.Blocks.dll) Version: 2.0.0.0

Syntax

C#

public static void Print(
	TextWriter writer,
	IEnumerable<string[]> data,
	int[] widths,
	string indent = null
)

VB

Public Shared Sub Print ( 
	writer As TextWriter,
	data As IEnumerable(Of String()),
	widths As Integer(),
	Optional indent As String = Nothing
)

F#

static member Print : 
        writer : TextWriter * 
        data : IEnumerable<string[]> * 
        widths : int[] * 
        ?indent : string 
(* Defaults:
        let _indent = defaultArg indent null
*)
-> unit 

Parameters

 

writer
Type: System.IO.TextWriter
Instance of TextWriter to write to.
data
Type: System.Collections.Generic.IEnumerable(String[])
Data to write.
widths
Type: System.Int32[]
Array of column widths
indent (Optional)
Type: System.String
The indent.

See Also

Reference

FixedWidthFormat Class
CodeJam.TableData Namespace

Clone this wiki locally