Page tree

Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: Migration of unmigrated content due to installation of a new plugin

...

Description

Excerpt

Converts points to twips. 1 point = 1/72

...

inch

...

=

...

20

...

twips.

...


1 inch = 72 points = 1440 twips

Signature
C#
C#
 public int FromPoints(double pts)
{signature}{signature:
}
Signature
vb.net
vb.net
Public Function FromPoints(ByVal pts As Double) As Integer
{signature}
{parameters}
{param:pts}The number of points to convert.{param}
{returns}The result of the conversion \(twips\).{returns}
{example}{code:csharp|title=C#}
Parameters
Param
pts
pts

The number of points to convert.

Returns

The result of the conversion (twips).

Example
Code Block
csharp
csharp
titleC#


          WordApplication wwApp = new WordApplication();
          Document doc = wwApp.Create();
          Section section = doc.CreateSectionAfter();
          section.PageWidth = TwipsConverter.FromPoints(612);
          section.PageHeight = TwipsConverter.FromPoints(792);
        
{code} {code:
Code Block
vb.net
|title=
vb.net
titlevb.net
}


          Dim wwApp As New WordApplication()
          Dim doc As Document = wwApp.Create()
          Dim section As Section = doc.CreateSectionAfter()
          section.PageWidth = TwipsConverter.FromPoints(612)
          section.PageHeight = TwipsConverter.FromPoints(792)
        
{code} {example}