MATLAB: What is this error message mean??

error

Error using matlab.ui.control.UIControl/get
There is no BackgroudndColor property on the UIControl class.
Error in Iteration_6_Smart_Trolley>edit2_CreateFcn (line 154)
if ispc && isequal(get(hObject,'BackgroudndColor'), get(0,'defaultUicontrolBackgroundColor'))
Error in gui_mainfcn (line 95)
feval(varargin{:});
Error in Iteration_6_Smart_Trolley (line 42)
gui_mainfcn(gui_State, varargin{:});
Error in
matlab.graphics.internal.figfile.FigFile/read>@(hObject,eventdata)Iteration_6_Smart_Trolley('edit2_CreateFcn',hObject,eventdata,guidata(hObject))

Best Answer

It can't get any clearer: There is no BackgroudndColor property on the UIControl class.
Notice how you misspelled BackgroundColor
Related Question