ComponentOne RulesManager for WinForms
C1.Win.RulesManager Namespace / ItemRange Class / ItemRange Constructor / ItemRange Constructor(String)
Range as a string.

In This Topic
    ItemRange Constructor(String)
    In This Topic
    Initializes a new instance of the ItemRange.
    Syntax
    'Declaration
     
    
    Public Function New( _
       ByVal range As String _
    )
    public ItemRange( 
       string range
    )

    Parameters

    range
    Range as a string.
    Remarks
    The string format should be: "{0}:{1}", where {0} is the FirstItem and {1} is the LastItem.
    Example
    ItemRange range = new ItemRange("1:100");
    See Also