//------------------------------------------------------------------------------
// <copyright file="IBorderPaddingControl.cs" company="Microsoft">
// Copyright (c) Microsoft Corporation. All rights reserved.
// </copyright>
//------------------------------------------------------------------------------
namespace System.Web.UI {
/// <devdoc>
/// <para>Represents a control that has BorderPadding property.</para>
/// </devdoc>
internal interface IBorderPaddingControl {
int BorderPadding { get; }
}
}
|