Canguro.Controller.CommandServices.Print C# (CSharp) Метод

Print() публичный Метод

Method to allow commands to print messages on the DirectX panel to inform the user in a not-so-invasive way.
public Print ( string message ) : void
message string The text message to display
Результат void
        public void Print(string message)
        {
            // TODO: Esto se debe de cambiar para desplegar el texto en el Panel DirectX
            controller.MainFrm.SetStatusLabel(message);
        }