C# 클래스 AODL.Document.Content.Tables.TableBuilder

TableBuilder offer static methode to build table for different document types.
파일 보기 프로젝트 열기: monsterlabs/HumanRightsTracker

공개 메소드들

메소드 설명
CreateSpreadsheetTable ( AODL document, string tableName, string styleName ) : Table

Create a spreadsheet table.

CreateTextDocumentTable ( AODL document, string tableName, string styleName, int rows, int columns, double width, bool useTableRowHeader, bool useBorder ) : Table

Creates the text document table.

비공개 메소드들

메소드 설명
GetColumnCellWidth ( int columns, double tableWith ) : string

Gets the width of the column cell.

메소드 상세

CreateSpreadsheetTable() 공개 정적인 메소드

Create a spreadsheet table.
public static CreateSpreadsheetTable ( AODL document, string tableName, string styleName ) : Table
document AODL The document.
tableName string Name of the table.
styleName string Name of the style.
리턴 Table

CreateTextDocumentTable() 공개 정적인 메소드

Creates the text document table.
public static CreateTextDocumentTable ( AODL document, string tableName, string styleName, int rows, int columns, double width, bool useTableRowHeader, bool useBorder ) : Table
document AODL The document.
tableName string Name of the table.
styleName string Name of the style.
rows int The rows.
columns int The columns.
width double The width.
useTableRowHeader bool if set to true [use table row header].
useBorder bool The useBorder.
리턴 Table