IndexOfString.StartIndex Property

 

Gets or sets the index to start the search.

Namespace:   Microsoft.Activities.Expressions
Assembly:  Microsoft.Activities (in Microsoft.Activities.dll)

Syntax

[DefaultValueAttribute(null)]
[DependsOnAttribute("SearchValue")]
public InArgument<int> StartIndex {
    [CompilerGeneratedAttribute]
    get;
    [CompilerGeneratedAttribute]
    set;
}
public:
[DefaultValueAttribute(null)]
[DependsOnAttribute("SearchValue")]
property InArgument<int>^ StartIndex {
    [CompilerGeneratedAttribute]
    InArgument<int>^ get();
    [CompilerGeneratedAttribute]
    void set(InArgument<int>^ value);
}
[<DefaultValueAttribute(null)>]
[<DependsOnAttribute("SearchValue")>]
member StartIndex : InArgument<int> with get, set
<DefaultValueAttribute(Nothing)>
<DependsOnAttribute("SearchValue")>
Public Property StartIndex As InArgument(Of Integer)

Property Value

Type: System.Activities.InArgument<Int32>

Returns the index to start the search.

See Also

IndexOfString Class
Microsoft.Activities.Expressions Namespace

Return to top