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}Sets or returns the name of the application that created the spreadsheet.{excerpt}
{signature:C#}
 public System.String Application{ get; set; }
{signature}{signature:vb.net}
Public Property Application() As String
{signature}
{example}{code:csharp|title=C#}

          //--- Get Application
          string app = docProps.Application;

          //--- Set Application
          docProps.Application = "SoftArtisans ExcelWriter";
        {code}
{code:vb.net|title=vb.net}

          '--- Get Application
          Dim app As String = docProps.Application

          '--- Set Application
          docProps.Application = "SoftArtisans ExcelWriter"
{code}

{example}