Shape.GetInputRange

Shape.GetInputRange method

Gets the range used to fill the control.

public string GetInputRange(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 used to fill the control.

Examples


[C#]
string range = shape.GetInputRange(false, true);
//If successful, a value like "$A$1:$A$3" will be returned

See Also