Files
DP44/Common/DTS.Common/RibbonControl/Interface/IRibbonTabInfoProvider.cs
2026-04-17 14:55:32 -04:00

14 lines
391 B
C#

namespace DTS.Common.RibbonControl
{
/// <summary>
/// Provides an easy way to get a ribbon tab info that can be used to find a specific ribbon tab.
/// </summary>
public interface IRibbonTabInfoProvider
{
/// <summary>
/// Gets the unique identifier for the ribbon tab.
/// </summary>
string RibbonTabUid { get; }
}
}