[MediaContent] Fix description of Delete method (#866)
[platform/core/csapi/tizenfx.git] / src / Tizen.NUI.Xaml / src / internal / XamlBinding / IPaddingElement.cs
1 namespace Tizen.NUI.XamlBinding
2 {
3     interface IPaddingElement
4     {
5         //note to implementor: implement this property publicly
6         // Thickness Padding { get; }
7
8         //note to implementor: but implement this method explicitly
9         void OnPaddingPropertyChanged(Thickness oldValue, Thickness newValue);
10         Thickness PaddingDefaultValueCreator();
11     }
12 }