Edit

Share via


TickLabels.NumberFormatLinked Property

Definition

True if the number format is linked to the cells (so that the number format changes in the labels when it changes in the cells). Read/write Boolean.

public:
 property bool NumberFormatLinked { bool get(); void set(bool value); };
public bool NumberFormatLinked { get; set; }
member this.NumberFormatLinked : bool with get, set
Public Property NumberFormatLinked As Boolean

Property Value

Examples

This example links the number format for tick-mark labels to its cells for the value axis of the first chart in the active document.

<span class="label">With ActiveDocument.InlineShapes(1) 































































































































































































































































    If .HasChart Then 































































































































































































































































        .Chart.Axes(xlValue).TickLabels.</span>
<i>NumberFormatLinked</i>
<span class="label">= True    End IfEnd With</span>

Applies to