Data.CopyKey.CopyKey C# (CSharp) Method

CopyKey() public method

public CopyKey ( string header, string footer, string content, HotkeysData modifier, Keys key, string orderBy, string order, string lowDpsContent, int lowDpsThreshold ) : System.Windows.Forms
header string
footer string
content string
modifier HotkeysData
key Keys
orderBy string
order string
lowDpsContent string
lowDpsThreshold int
return System.Windows.Forms
        public CopyKey(string header, string footer, string content, HotkeysData.ModifierKeys modifier, Keys key,
            string orderBy, string order, string lowDpsContent, int lowDpsThreshold)
        {
            Content = content;
            Header = header;
            Footer = footer;
            Modifier = modifier;
            Key = key;
            OrderBy = orderBy;
            Order = order;
            LowDpsContent = lowDpsContent;
            LowDpsThreshold = lowDpsThreshold;
        }
CopyKey