コード例 #1
0
 /// <inheritdoc/>
 public string GetDescription(IRibbonControl Control)
 => Descriptionables(Control?.Id)?.Description ?? Control.Unknown("Description");
コード例 #2
0
 /// <inheritdoc/>
 public string GetItemSuperTip(IRibbonControl Control, int Index)
 => SelectItems(Control?.Id)?.Items[Index].SuperTip ?? Control.Unknown();
コード例 #3
0
 /// <inheritdoc/>
 public string GetItemLabel(IRibbonControl Control, int Index)
 => SelectItems(Control?.Id)?.Items[Index].Label ?? Control.Unknown();
コード例 #4
0
 /// <inheritdoc/>
 public string GetSuperTip(IRibbonControl Control)
 => Controls(Control?.Id)?.SuperTip ?? Control.Unknown("SuperTip");
コード例 #5
0
 /// <inheritdoc/>
 public string GetScreenTip(IRibbonControl Control)
 => Controls(Control?.Id)?.ScreenTip ?? Control.Unknown("ScreenTip");
コード例 #6
0
 /// <inheritdoc/>
 public string GetLabel(IRibbonControl Control)
 => Controls(Control?.Id)?.Label ?? Control.Unknown();