Ви не можете вибрати більше 25 тем Теми мають розпочинатися з літери або цифри, можуть містити дефіси (-) і не повинні перевищувати 35 символів.

12345678910111213141516171819202122232425262728293031323334
  1. /*************************************************************************************
  2. DocX – DocX is the community edition of Xceed Words for .NET
  3. Copyright (C) 2009-2016 Xceed Software Inc.
  4. This program is provided to you under the terms of the Microsoft Public
  5. License (Ms-PL) as published at http://wpftoolkit.codeplex.com/license
  6. For more features and fast professional support,
  7. pick up Xceed Words for .NET at https://xceed.com/xceed-words-for-net/
  8. ***********************************************************************************/
  9. using System.Collections.Generic;
  10. using System.Linq;
  11. namespace Xceed.Words.NET
  12. {
  13. public class BookmarkCollection : List<Bookmark>
  14. {
  15. public BookmarkCollection()
  16. {
  17. }
  18. public Bookmark this[ string name ]
  19. {
  20. get
  21. {
  22. return this.FirstOrDefault( x => x.Name.Equals( name, System.StringComparison.CurrentCultureIgnoreCase ) );
  23. }
  24. }
  25. }
  26. }