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
Wiki Markup
{description}
{excerpt}Converts twips to centimeters.  A twip is 1/1440 of an inch and 1/567 of a centimeter.{excerpt}
{signature:C#}
 public double ToCentimeters(int twips)
{signature}{signature:vb.net}
Public Function ToCentimeters(ByVal twips As Integer) As Double
{signature}
{parameters}
{param:twips}The number of twips to convert to centimeters.{param}
{returns}The result of the conversion \(centimeters\).{returns}
{example}{code:csharp|title=C#}
TwipsConverter.ToCentimeters(12240);{code}
{code:vb.net|title=vb.net}
TwipsConverter.ToCentimeters(12240){code}

{example}