// 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 y coordinate. /// /// /// The y coordinate. /// int? Y { get; } /// /// Gets the width. /// /// /// The width. /// int? Width { get; } /// /// Gets the height. /// /// /// The height. /// int? Height { get; } /// /// Returns true if browser interface elements should be hidden. /// bool IsPopup { get; } } }