Adf.Core.Panels.PanelItemExtensions.GetLabelId C# (CSharp) Method

GetLabelId() public static method

public static GetLabelId ( this panelitem ) : string
panelitem this
return string
        public static string GetLabelId(this PanelItem panelitem)
        {
            var type = panelitem.Member.ReflectedType.Name;

            return String.Format("_label{0}{1}{2}", type, panelitem.Member.Name, panelitem.Alias);
        }