ACPAddIn.ThisAddIn.displayMessage C# (CSharp) Method

displayMessage() private method

private displayMessage ( string msg ) : void
msg string
return void
        private void displayMessage(string msg)
        {
            notificationForm.setMessage(msg);
            notificationForm.updateLocation(applicationLocation, applicationSize);
            notificationForm.showWithTimer(5);
        }