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

...

Description

Excerpt

Sets or returns whether to stretch cell references in charts.

Signature
C#
C#
<p> public boolean StretchCellReferencesInCharts{ get; set; }
{signature}{signature:</p>
} Public
Signature
vb.net
vb.net
<p>Public Property StretchCellReferencesInCharts() As Boolean
{signature}
{example}{code:csharp|title=C#}Boolean</p>

Example
Code Block
csharp
csharp
titleC#
          

...

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

          //--- Set StretchCellReferencesInCharts to true
          XlwTemplate.StretchCellReferencesInCharts = true;
        

...

Code Block
vb.net

...

vb.net
titlevb.net

...

          

...

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

          '--- Set StretchCellReferencesInCharts to true
          XlwTemplate.StretchCellReferencesInCharts = True
        

...