MESCIUS.ActiveReports.Core.Rdl Assembly / GrapeCity.ActiveReports.PageReportModel Namespace / Length Structure / IsValid Property
Example

In This Topic
IsValid Property (Length)
In This Topic
Gets a value indicating whether the Length is valid.
Syntax
'Declaration
 
Public ReadOnly Property IsValid As Boolean
 

Property Value

A System.Boolean value. true if the Length is valid; otherwise, false.
Example
var length = new Length("10in");
bool isValid = length.IsValid; // true
See Also