ACPAddIn.ThisAddIn.displayMessage C# (CSharp) Méthode

displayMessage() private méthode

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