10 lines
158 B
C#
10 lines
158 B
C#
using System;
|
|
|
|
namespace CPF.ReoGrid.Drawing
|
|
{
|
|
public interface IDrawingComponentStyle : IDrawingObjectStyle
|
|
{
|
|
PaddingValue Padding { get; set; }
|
|
}
|
|
}
|