Habanero.Faces.Win.WizardStepWin.CanMoveOn C# (CSharp) Method

CanMoveOn() public method

Always returns true as this wizard step is simply for displaying a message to a user.
public CanMoveOn ( string &message ) : bool
message string Out parameter that will always be the empty string
return bool
        public virtual bool CanMoveOn(out string message)
        {
            message = "";
            return true;
        }