17 lines
610 B
C#
17 lines
610 B
C#
//------------------------------------------------------------------------------
|
|
// <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; }
|
|
|
|
}
|
|
}
|