Exemple #1
0
 /// <summary>
 /// Gets a textual representation of the area - eg. to be used in Examine.
 /// </summary>
 /// <returns>An instance of <see cref="System.String"/> representing the value of the area.</returns>
 public override string GetSearchableText()
 {
     return(Controls.Aggregate("", (current, control) => current + control.GetSearchableText()));
 }