{description}
{excerpt}Converts twips to inches.  A twip is 1/1440 of an inch.{excerpt}
{signature:C#}
 public double ToInches(int twips)
{signature}{signature: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#}
TwipsConverter.ToInches(12240);{code}
{code:vb.net|title=vb.net}
TwipsConverter.ToInches(12240){code}

{example}