KeyboardEditor.ViewModels.KeyboardProfileViewModel.CheckCanGoFurther C# (CSharp) Method

CheckCanGoFurther() public method

Checks that all informations has been filled and that there are no keyboards that have the selected name.
public CheckCanGoFurther ( ) : bool
return bool
        public override bool CheckCanGoFurther()
        {
            return ( Width > 0
                && Height > 0
                && !String.IsNullOrWhiteSpace( Name ) );
        }