Метод | Описание | |
---|---|---|
DeleteAndShiftCellsLeft ( int rowIndex, int celIndex ) : void |
Deletes a cell in a row
|
|
GetBorder ( TableBorderType borderType ) : Novacode.Border |
Get a table border Added by lckuiper @ 20101117
|
|
GetColumnWidth ( |
Gets the column width for a given column index.
|
|
InsertColumn ( ) : void |
Insert a column to the right of a Table.
|
|
InsertColumn ( int index, bool direction ) : void |
Insert a column into a table.
|
|
InsertPageBreakAfterSelf ( ) : void |
Insert a page break after a Table.
|
|
InsertPageBreakBeforeSelf ( ) : void |
Insert a page break before a Table.
|
|
InsertParagraphAfterSelf ( |
Insert a Paragraph after this Table, this Paragraph may have come from the same or another document.
|
|
InsertParagraphAfterSelf ( string text ) : |
Insert a new Paragraph after this Table.
|
|
InsertParagraphAfterSelf ( string text, bool trackChanges ) : |
Insert a new Paragraph after this Table.
|
|
InsertParagraphAfterSelf ( string text, bool trackChanges, |
Insert a new Paragraph after this Table.
|
|
InsertParagraphBeforeSelf ( |
Insert a Paragraph before this Table, this Paragraph may have come from the same or another document.
|
|
InsertParagraphBeforeSelf ( string text ) : |
Insert a new Paragraph before this Table.
|
|
InsertParagraphBeforeSelf ( string text, bool trackChanges ) : |
Insert a new Paragraph before this Table.
|
|
InsertParagraphBeforeSelf ( string text, bool trackChanges, |
Insert a new Paragraph before this Table.
|
|
InsertRow ( ) : |
Insert a row at the end of this table.
|
|
InsertRow ( |
Insert a copy of a row at the end of this table.
|
|
InsertRow ( |
Insert a copy of a row into this table.
|
|
InsertRow ( int index ) : |
Insert a row into this table.
|
|
InsertTableAfterSelf ( |
Insert a new Table after this Table, this Table can be from this document or another document.
|
|
InsertTableAfterSelf ( int rowCount, int columnCount ) : |
Insert a new Table into this document after this Table.
|
|
InsertTableBeforeSelf ( |
Insert a new Table before this Table, this Table can be from this document or another document.
|
|
InsertTableBeforeSelf ( int rowCount, int columnCount ) : |
Insert a new Table into this document before this Table.
|
|
MergeCellsInColumn ( int columnIndex, int startRow, int endRow ) : void |
Merge cells in given column starting with startRow and ending with endRow. Added by arudoy patch: 11608 |
|
Remove ( ) : void |
Remove this Table from this document.
|
|
RemoveColumn ( ) : void |
Remove the last column for this Table.
|
|
RemoveColumn ( int index ) : void |
Remove a column from this Table.
|
|
RemoveRow ( ) : void |
Remove the last row from this Table.
|
|
RemoveRow ( int index ) : void |
Remove a row from this Table.
|
|
SetBorder ( TableBorderType borderType, Novacode.Border border ) : void |
Set a table border Added by lckuiper @ 20101117
|
|
SetColumnWidth ( |
Sets the column width for the given index.
|
|
SetDirection ( Direction direction ) : void |
Set the direction of all content in this Table.
|
|
SetTableCellMargin ( TableCellMarginType type, double margin ) : void |
Set the specified cell margin for the table-level. More information can be found |
|
SetWidths ( float widths ) : void | ||
SetWidthsPercentage ( float widthsPercentage, float totalWidth ) : void |
Set Table column width by prescribing percent
|
Метод | Описание | |
---|---|---|
AddCellToRow ( |
Adds a cell to the right or left of a cell
|
|
GetOrCreate_tblPr ( ) : System.Xml.Linq.XElement |
If the tblPr element doesent exist it is created, either way it is returned by this function.
|
|
InsertRow ( List |
||
Table ( |
public DeleteAndShiftCellsLeft ( int rowIndex, int celIndex ) : void | ||
rowIndex | int | index of the row you want to remove the cell |
celIndex | int | index of the cell you want to remove |
Результат | void |
public GetBorder ( TableBorderType borderType ) : Novacode.Border | ||
borderType | TableBorderType | The table border to get |
Результат | Novacode.Border |
public GetColumnWidth ( |
||
index | ||
Результат | Double |
public InsertColumn ( int index, bool direction ) : void | ||
index | int | The index to insert the column at. |
direction | bool | The side in which you wish to place the colum(True right, false left) |
Результат | void |
public InsertPageBreakAfterSelf ( ) : void | ||
Результат | void |
public InsertPageBreakBeforeSelf ( ) : void | ||
Результат | void |
public InsertParagraphAfterSelf ( |
||
p | The Paragraph to insert. | |
Результат |
public InsertParagraphAfterSelf ( string text ) : |
||
text | string | The initial text for this new Paragraph. |
Результат |
public InsertParagraphAfterSelf ( string text, bool trackChanges ) : |
||
text | string | The initial text for this new Paragraph. |
trackChanges | bool | Should this insertion be tracked as a change? |
Результат |
public InsertParagraphAfterSelf ( string text, bool trackChanges, |
||
text | string | The initial text for this new Paragraph. |
trackChanges | bool | Should this insertion be tracked as a change? |
formatting | The formatting to apply to this insertion. | |
Результат |
public InsertParagraphBeforeSelf ( |
||
p | The Paragraph to insert. | |
Результат |
public InsertParagraphBeforeSelf ( string text ) : |
||
text | string | The initial text for this new Paragraph. |
Результат |
public InsertParagraphBeforeSelf ( string text, bool trackChanges ) : |
||
text | string | The initial text for this new Paragraph. |
trackChanges | bool | Should this insertion be tracked as a change? |
Результат |
public InsertParagraphBeforeSelf ( string text, bool trackChanges, |
||
text | string | The initial text for this new Paragraph. |
trackChanges | bool | Should this insertion be tracked as a change? |
formatting | The formatting to apply to this insertion. | |
Результат |
public InsertRow ( |
||
row | Row to copy and insert. | |
index | int | Index to insert row at. |
Результат |
public InsertRow ( int index ) : |
||
index | int | Index to insert row at. |
Результат |
public InsertTableAfterSelf ( |
||
t | The Table t to be inserted | |
Результат |
public InsertTableAfterSelf ( int rowCount, int columnCount ) : |
||
rowCount | int | The number of rows this Table should have. |
columnCount | int | The number of columns this Table should have. |
Результат |
public InsertTableBeforeSelf ( |
||
t | The Table t to be inserted | |
Результат |
public InsertTableBeforeSelf ( int rowCount, int columnCount ) : |
||
rowCount | int | The number of rows this Table should have. |
columnCount | int | The number of columns this Table should have. |
Результат |
public MergeCellsInColumn ( int columnIndex, int startRow, int endRow ) : void | ||
columnIndex | int | |
startRow | int | |
endRow | int | |
Результат | void |
public RemoveColumn ( int index ) : void | ||
index | int | The column to remove. |
Результат | void |
public RemoveRow ( int index ) : void | ||
index | int | The row to remove. |
Результат | void |
public SetBorder ( TableBorderType borderType, Novacode.Border border ) : void | ||
borderType | TableBorderType | The table border to set |
border | Novacode.Border | Border object to set the table border |
Результат | void |
public SetColumnWidth ( |
||
index | Column index | |
width | Double | Colum width |
Результат | void |
public SetDirection ( Direction direction ) : void | ||
direction | Direction | (Left to Right) or (Right to Left) |
Результат | void |
public SetTableCellMargin ( TableCellMarginType type, double margin ) : void | ||
type | TableCellMarginType | The side of the cell margin. |
margin | double | The value for the specified cell margin. |
Результат | void |
public SetWidthsPercentage ( float widthsPercentage, float totalWidth ) : void | ||
widthsPercentage | float | column width % list |
totalWidth | float | Total table width. Will be calculated if null sent. |
Результат | void |