|
//------------------------------------------------------------------------------
// <copyright file="RequestResizeEventHandler.cs" company="Microsoft">
// Copyright (c) Microsoft Corporation. All rights reserved.
// </copyright>
//------------------------------------------------------------------------------
namespace System.Windows.Forms {
using System.Diagnostics;
using System;
/// <include file='doc\RequestResizeEventHandler.uex' path='docs/doc[@for="ContentsResizedEventHandler"]/*' />
/// <devdoc>
/// <para>Represents the method that will handle the <see cref='System.Windows.Forms.RichTextBox.ContentsResized'/> event of
/// a <see cref='System.Windows.Forms.RichTextBox'/>.</para>
/// </devdoc>
public delegate void ContentsResizedEventHandler(object sender, ContentsResizedEventArgs e);
}
|