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

...

of

...

an

...

inch.

...

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

The number of twips to convert to inches.

Returns

The result of the conversion (inches).

Example
Code Block
csharp
csharp
titleC#

TwipsConverter.ToInches(12240);
{code} {code:
Code Block
vb.net
|title=
vb.net
titlevb.net
}

TwipsConverter.ToInches(12240)
{code} {example}