Shape.GetLinkedCell

Shape.GetLinkedCell method

Gets the range linked to the control’s value.

public string GetLinkedCell(bool isR1C1, bool isLocal)
ParameterTypeDescription
isR1C1BooleanWhether the formula needs to be formatted as R1C1.
isLocalBooleanWhether the formula needs to be formatted by locale.

Return Value

The range linked to the control’s value.

Examples


[C#]
//You may get results like '$A$1'
string link = shape.GetLinkedCell(false, false);

See Also