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 whether to stretch cell references in charts.

{signature}
{example}{code:csharp|title=C#}

          //--- Get StretchCellReferencesInCharts
          boolean stretchCellRef = XlwTemplate.StretchCellReferencesInCharts;

          //--- Set StretchCellReferencesInCharts to true
          XlwTemplate.StretchCellReferencesInCharts = true;
        
{code}
{code:vb.net
|title=vb.net
}

          '--- Get StretchCellReferencesInCharts
          Dim stretchCellRef As Boolean = XlwTemplate.StretchCellReferencesInCharts

          '--- Set StretchCellReferencesInCharts to true
          XlwTemplate.StretchCellReferencesInCharts = True
        {code}

{example}
Signature
C#C#
Wiki Markup
{description}
{excerpt}Sets or returns whether to stretch cell references in charts.{excerpt}
{signature:C#}
 public boolean StretchCellReferencesInCharts{ get; set; }
Signature
{signature}{signature:vb.net
vb.net
}
Public Property StretchCellReferencesInCharts() As Boolean
Example
Code Block
csharpcsharp
titleC#
Code Block
vb.nettitle