14 lines
391 B
C#
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; }
|
|
}
|
|
}
|