Page tree

Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: Migrated to Confluence 4.0
Description

...

Wiki Markup
{description}
{excerpt}Sets an {{int}} that represents this table cell margin at a particular location in twips. One twip = \(1/20 pt\) or \(1/1440 in\)

...

Signature
C#C#
{excerpt}
{signature:C#}
 public void SetPadding(Location location, int value)
Signature
{signature}{signature:vb.net
vb.net
}
Public Sub SetPadding(ByVal location As Location, ByVal value As Integer)
Parameters

...

A TableCell.Location object that represents ths location of the margin.

...

An int representing the value of the margin in twips.

Remarks

Allowed locations are Top, Left, Bottom, and Right, which refer to the default margins for those sides of a table cell.

By default, Top and Bottom are set to 0", and Left and Right are set to 0.08".

Word equivalent: Table menu > Table Properties... > Cell tab > Options... button > Cell margins section

{signature}
{parameters}
{param:location}A [TableCell.Location|TableCell.Location] object that represents ths location of the margin.{param}
{param:value}An {{int}} representing the value of the margin in twips.{param}
{remarks}Allowed locations are Top, Left, Bottom, and Right, which refer to the default margins for those sides of a table cell.

By default, Top and Bottom are set to 0", and Left and Right are set to 0.08".

Word equivalent: Table menu > Table Properties... > Cell tab > Options... button > Cell margins section

{remarks}
{example}{code:csharp|title=C#}

          //--- Set Padding for Left margin to 1 inch
          cell.SetPadding(TableCell.Location.Left, 1440);
        
{code}
{code:vb.net
|title=vb.net
}

          '--- Set Padding for Left margin to 1 inch
          cell.SetPadding(TableCell.Location.Left, 1440)
        {code}

{example}
Example
Code Block
csharpcsharp
titleC#
Code Block
vb.nettitle