MESCIUS.ActiveReports.Core.Rdl Assembly / GrapeCity.ActiveReports.PageReportModel Namespace / Length Structure / ToString Method / ToString() Method
Example

In This Topic
ToString() Method
In This Topic
Converts the value of this instance to its equivalent string representation.
Syntax
'Declaration
 
Public Overloads Overrides Function ToString() As String
 

Return Value

A System.String value indicating the current Length instance.
Example
var length = new Length("1in");
string result = length.ToString(); // "1in"
See Also