Page tree

Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: Migrated to Confluence 4.0
Description

Excerpt

Sets or returns the name of the application that created the spreadsheet.

{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}
Signature
C#C#
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}{signature:vb.net
vb.net
}
Public Property Application() As String
Example
Code Block
csharpcsharp
titleC#
Code Block
vb.nettitle