// Copyright © 2016 The CefSharp Authors. All rights reserved. // // Use of this source code is governed by a BSD-style license that can be found in the LICENSE file. namespace CefSharp { /// /// Class representing popup window features. /// public interface IPopupFeatures { /// /// Gets the x coordinate. /// /// /// The x coordinate. /// int X { get; } /// /// Gets the set. /// /// /// The x coordinate set. /// int XSet { get; } /// /// Gets the y coordinate. /// /// /// The y coordinate. /// int Y { get; } /// /// Gets the set. /// /// /// The y coordinate set. /// int YSet { get; } /// /// Gets the width. /// /// /// The width. /// int Width { get; } /// /// Gets the set the width belongs to. /// /// /// The width set. /// int WidthSet { get; } /// /// Gets the height. /// /// /// The height. /// int Height { get; } /// /// Gets the set the height belongs to. /// /// /// The height set. /// int HeightSet { get; } /// /// Gets a value indicating whether the menu bar is visible. /// /// /// True if menu bar visible, false if not. /// bool MenuBarVisible { get; } /// /// Gets a value indicating whether the status bar is visible. /// /// /// True if status bar visible, false if not. /// bool StatusBarVisible { get; } /// /// Gets a value indicating whether the tool bar is visible. /// /// /// True if tool bar visible, false if not. /// bool ToolBarVisible { get; } /// /// Gets a value indicating whether the scrollbars is visible. /// /// /// True if scrollbars visible, false if not. /// bool ScrollbarsVisible { get; } } }