SIL.FieldWorks.XWorks.MorphologyEditor.InflAffixTemplateControl.MenuLabelForInflTemplateAffixSlotOperation C# (CSharp) Method

MenuLabelForInflTemplateAffixSlotOperation() private method

private MenuLabelForInflTemplateAffixSlotOperation ( string sLabel, bool &fEnabled ) : ITsString
sLabel string
fEnabled bool
return ITsString
		internal ITsString MenuLabelForInflTemplateAffixSlotOperation(string sLabel, out bool fEnabled)
		{
			CheckDisposed();
			ITsString tssLabel = DetermineSlotContextMenuItemLabel(sLabel);
			if (m_obj.ClassID == MoInflAffixSlotTags.kClassId)
				fEnabled = true;
			else
				fEnabled = false;
			return tssLabel;
		}