| 12345678910111213141516171819202122 |
- // Copyright (c) The Avalonia Project. All rights reserved.
- // Licensed under the MIT license. See licence.md file in the project root for full license information.
- using System;
- namespace Avalonia
- {
- /// <summary>
- /// Provides a runtime interface for interfacing with <see cref="StyledProperty{TValue}"/>.
- /// </summary>
- internal interface IStyledPropertyAccessor
- {
- /// <summary>
- /// Gets the default value for the property for the specified type.
- /// </summary>
- /// <param name="type">The type.</param>
- /// <returns>
- /// The default value.
- /// </returns>
- object GetDefaultValue(Type type);
- }
- }
|