File: winforms\Managed\System\WinForms\MergeAction.cs
Project: ndp\fx\src\System.Windows.Forms.csproj (System.Windows.Forms)
//------------------------------------------------------------------------------
// <copyright file="MergeAction.cs" company="Microsoft">
//     Copyright (c) Microsoft Corporation.  All rights reserved.
// </copyright>                                                                
//------------------------------------------------------------------------------
 
namespace System.Windows.Forms {
    public enum MergeAction {
        /// <include file='doc\MergeAction.uex' path='docs/doc[@for="MergeAction.Append"]/*' />
        Append,
        /// <include file='doc\MergeAction.uex' path='docs/doc[@for="MergeAction.Insert"]/*' />
        Insert,
        /// <include file='doc\MergeAction.uex' path='docs/doc[@for="MergeAction.Replace"]/*' />
        Replace ,
        /// <include file='doc\MergeAction.uex' path='docs/doc[@for="MergeAction.Remove"]/*' />
        Remove,
        /// <include file='doc\MergeAction.uex' path='docs/doc[@for="MergeAction.MatchOnly"]/*' />
        MatchOnly
    };
}