/*
* Copyright (c) 2024 ETH Zürich, IT Services
*
* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
*/
namespace SafeExamBrowser.Settings.Proctoring
{
///
/// Defines all possible visibility states for the proctoring window.
///
public enum WindowVisibility
{
///
/// The proctoring window is hidden and cannot be shown by the user.
///
Hidden,
///
/// The proctoring window is initially hidden but may be shown by the user.
///
AllowToShow,
///
/// The proctoring window is initially visible but may be hidden by the user.
///
AllowToHide,
///
/// The proctoring window is always visible and cannot be hidden by the user.
///
Visible
}
}