MSHelpKeywordCollection Class

This collection class is used to hold the help index keyword items for a project

Definition

Namespace: SandcastleBuilder.Utils
Assembly: SandcastleBuilder.Utils (in SandcastleBuilder.Utils.dll) Version: 2024.12.21.0
public class MSHelpKeywordCollection : BindingList<MSHelpKeyword>
Inheritance
Object    Collection<MSHelpKeyword>    BindingList<MSHelpKeyword>    MSHelpKeywordCollection

Constructors

MSHelpKeywordCollectionInitializes a new instance of the MSHelpKeywordCollection class

Properties

AllowEditGets or sets a value indicating whether items in the list can be edited.
(Inherited from BindingList<MSHelpKeyword>)
AllowNewGets or sets a value indicating whether you can add items to the list using the AddNew() method.
(Inherited from BindingList<MSHelpKeyword>)
AllowRemoveGets or sets a value indicating whether you can remove items from the collection.
(Inherited from BindingList<MSHelpKeyword>)
CountGets the number of elements actually contained in the Collection<T>.
(Inherited from Collection<MSHelpKeyword>)
IsSortedCoreGets a value indicating whether the list is sorted.
(Inherited from BindingList<MSHelpKeyword>)
ItemGets or sets the element at the specified index.
(Inherited from Collection<MSHelpKeyword>)
ItemsGets a IList<T> wrapper around the Collection<T>.
(Inherited from Collection<MSHelpKeyword>)
RaiseListChangedEventsGets or sets a value indicating whether adding or removing items within the list raises ListChanged events.
(Inherited from BindingList<MSHelpKeyword>)
SortDirectionCoreGets the direction the list is sorted.
(Inherited from BindingList<MSHelpKeyword>)
SortPropertyCoreGets the property descriptor that is used for sorting the list if sorting is implemented in a derived class; otherwise, returns null.
(Inherited from BindingList<MSHelpKeyword>)
SupportsChangeNotificationCoreGets a value indicating whether ListChanged events are enabled.
(Inherited from BindingList<MSHelpKeyword>)
SupportsSearchingCoreGets a value indicating whether the list supports searching.
(Inherited from BindingList<MSHelpKeyword>)
SupportsSortingCoreGets a value indicating whether the list supports sorting.
(Inherited from BindingList<MSHelpKeyword>)

Methods

AddAdds an object to the end of the Collection<T>.
(Inherited from Collection<MSHelpKeyword>)
AddNewAdds a new item to the collection.
(Inherited from BindingList<MSHelpKeyword>)
AddNewCoreAdds a new item to the end of the collection.
(Inherited from BindingList<MSHelpKeyword>)
ApplySortCoreSorts the items if overridden in a derived class; otherwise, throws a NotSupportedException.
(Inherited from BindingList<MSHelpKeyword>)
CancelNewDiscards a pending new item.
(Inherited from BindingList<MSHelpKeyword>)
ClearRemoves all elements from the Collection<T>.
(Inherited from Collection<MSHelpKeyword>)
ClearItemsRemoves all elements from the collection.
(Inherited from BindingList<MSHelpKeyword>)
ContainsDetermines whether an element is in the Collection<T>.
(Inherited from Collection<MSHelpKeyword>)
CopyToCopies the entire Collection<T> to a compatible one-dimensional Array, starting at the specified index of the target array.
(Inherited from Collection<MSHelpKeyword>)
EndNewCommits a pending new item to the collection.
(Inherited from BindingList<MSHelpKeyword>)
EqualsDetermines whether the specified object is equal to the current object.
(Inherited from Object)
FinalizeAllows an object to try to free resources and perform other cleanup operations before it is reclaimed by garbage collection.
(Inherited from Object)
FindCoreSearches for the index of the item that has the specified property descriptor with the specified value, if searching is implemented in a derived class; otherwise, a NotSupportedException.
(Inherited from BindingList<MSHelpKeyword>)
GetEnumeratorReturns an enumerator that iterates through the Collection<T>.
(Inherited from Collection<MSHelpKeyword>)
GetHashCodeServes as the default hash function.
(Inherited from Object)
GetTypeGets the Type of the current instance.
(Inherited from Object)
IndexOfSearches for the specified object and returns the zero-based index of the first occurrence within the entire Collection<T>.
(Inherited from Collection<MSHelpKeyword>)
InsertInserts an element into the Collection<T> at the specified index.
(Inherited from Collection<MSHelpKeyword>)
InsertItemInserts the specified item in the list at the specified index.
(Inherited from BindingList<MSHelpKeyword>)
MemberwiseCloneCreates a shallow copy of the current Object.
(Inherited from Object)
OnAddingNewRaises the AddingNew event.
(Inherited from BindingList<MSHelpKeyword>)
OnListChangedRaises the ListChanged event.
(Inherited from BindingList<MSHelpKeyword>)
RemoveRemoves the first occurrence of a specific object from the Collection<T>.
(Inherited from Collection<MSHelpKeyword>)
RemoveAtRemoves the element at the specified index of the Collection<T>.
(Inherited from Collection<MSHelpKeyword>)
RemoveItemRemoves the item at the specified index.
(Inherited from BindingList<MSHelpKeyword>)
RemoveSortCoreRemoves any sort applied with ApplySortCore(PropertyDescriptor, ListSortDirection) if sorting is implemented in a derived class; otherwise, raises NotSupportedException.
(Inherited from BindingList<MSHelpKeyword>)
ResetBindingsRaises a ListChanged event of type Reset.
(Inherited from BindingList<MSHelpKeyword>)
ResetItemRaises a ListChanged event of type ItemChanged for the item at the specified position.
(Inherited from BindingList<MSHelpKeyword>)
SetItemReplaces the item at the specified index with the specified item.
(Inherited from BindingList<MSHelpKeyword>)
ToStringReturns a string that represents the current object.
(Inherited from Object)
WriteXml This is used to save the keyword collection to the project file

Events

AddingNewOccurs before an item is added to the list.
(Inherited from BindingList<MSHelpKeyword>)
ListChangedOccurs when the list or an item in the list changes.
(Inherited from BindingList<MSHelpKeyword>)

See Also