BF2Statistics.Notify.NotifyOptions.NotifyOptions C# (CSharp) Method

NotifyOptions() public method

public NotifyOptions ( string Message, string SubText, AlertType Type ) : System
Message string
SubText string
Type AlertType
return System
            public NotifyOptions(string Message, string SubText, AlertType Type)
            {
                this.Message = Message;
                this.SubText = SubText;

                switch (Type)
                {
                    default:
                        Icon = ToolTipIcon.Info;
                        break;
                    case AlertType.Warning:
                        Icon = ToolTipIcon.Warning;
                        break;
                }
            }
Notify.NotifyOptions