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 inches to twips. A twip is 1/1440

...

of

...

an

...

inch.

...

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

The number of inches 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.FromInches(8.5);
          section.PageHeight = TwipsConverter.FromInches(11);
        
{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.FromInches(8.5)
          section.PageHeight = TwipsConverter.FromInches(11)
        
{code} {example}