Data.CopyKey.CopyKey C# (CSharp) 메소드

CopyKey() 공개 메소드

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
리턴 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