ComponentOne RulesManager for WinForms
C1.Win.RulesManager.Model Namespace / ItemRangeCollection Class / SetRange Method
解析するテキスト。

In This Topic
    SetRange Method (ItemRangeCollection)
    In This Topic
    テキストを IItemRange オブジェクトまたはオブジェクトのリストとして解析するよう試み、コレクションに入力します。
    Syntax
    'Declaration
     
    
    Public Function SetRange( _
       ByVal text As String _
    ) As Boolean
    public bool SetRange( 
       string text
    )

    Parameters

    text
    解析するテキスト。

    Return Value

    成功した場合は true。
    Remarks
    範囲の区切りは「;」。
    Example
    collection.SetRange("1:7;[Field1];5:6:[Field2]"); コレクションを 3 つの範囲で埋めます。 C1.Win.RulesManager.ItemRange は FirstItem = 1 と LastItem = 7 C1.Win.RulesManager.FieldRange は 1 つのフィールド: Field1 C1.Win.RulesManager.CustomItemRange は FirstItem = 5、LastItem = 6、および 1 つのフィールド: Field2
    See Also