h = pwGetHandlerMainGUI Use this function to customize the positioning of the PottersWheel main user interface.
% Get handler h = pwGetHandlerMainGUI; % Get all properties get(h) % Get width and height p = get(h, 'Position'); width = p(3); height = p(4); % Change position set(h, 'Position', [100 100 width height])