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 inches to twips.  A twip is 1/1440 of an inch.{excerpt}
{signature:C#}
 public int FromInches(double inches)
{signature}{signature: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#}

          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:vb.net|title=vb.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}