Skip to main content

XlTableReference.ToString() Method

Converts a table reference to a string.

Namespace: DevExpress.Export.Xl

Assembly: DevExpress.Printing.v23.2.Core.dll

NuGet Package: DevExpress.Printing.Core

Declaration

public override string ToString()

Returns

Type Description
String

A string that specifies the textual representation of a table reference.

Remarks

Use the ToString method to return a string representation of the XlTableReference object.

For example, the ToString method returns “Table1[[#Data],[Q1]:[Q4]]” for the following XlTableReference instance.

XlTableReference reference = table.GetReference(XlTablePart.Data, "Q1", "Q4");
See Also