hoTools.Find.FindAndReplace.ItemShortDescription C# (CSharp) Method

ItemShortDescription() public method

public ItemShortDescription ( ) : string
return string
        public string ItemShortDescription()
        {
            if (_index < 0) return "0\0";
            return string.Format(@"{0}\{1}: {2}", _index+1, _l_items.Count, _l_items[_index]);
        }
        #endregion

Usage Example

 private void btnFindNext_Click(object sender, EventArgs e)
 {
     if (_fr == null)
     {
         MessageBox.Show("Start search with 'Find'");
         return;
     }
     _fr.FindNext();
     _fr.LocateCurrentElement();
     txtStatus.Text = _fr.ItemShortDescription();
 }
All Usage Examples Of hoTools.Find.FindAndReplace::ItemShortDescription