[corlib] Update ValueTuple implementation
[mono.git] / mcs / class / referencesource / System.Activities.Presentation / System.Activities.Presentation / System / Activities / Presentation / Model / TextImage.cs
1 //-----------------------------------------------------------------------------
2 // Copyright (c) Microsoft Corporation.  All rights reserved.
3 //-----------------------------------------------------------------------------
4
5 namespace System.Activities.Presentation.Model
6 {
7     using System.Collections.Generic;
8
9     /// <summary>
10     /// This class is to hold the searchable strings extracted from the modeltree. All strings 
11     /// are well ordered. And StartIndex point to the cursor in the content. It depends on the
12     /// current selection in the model item tree.Search implementor can start their search from
13     /// the StartIndex.
14     /// </summary>
15     [Serializable]
16     public sealed class TextImage
17     {
18         public int StartLineIndex { get; set; }
19         public IList<string> Lines { get; internal set; }
20     }
21 }