[]
        
(Showing Draft Content)

GrapeCity.ActiveReports.PageReportModel.Length.op_Explicit

explicit operator Operator

explicit operator string(Length)

Converts a Length instance to its string representation.

Declaration
public static explicit operator string(Length unit)
Parameters
Type Name Description
Length unit

A Length value to convert.

Returns
Type Description
string

A string value indicating the Length.

Examples
var length = new Length("1in");
string lengthString = (string)length; // "1in"