admin
2020-06-10 a610f2ab6e543d2cb78c1ef212ac6a74ddc067d9
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
// 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
{
    /// <summary>
    /// Class representing popup window features. 
    /// </summary>
    public interface IPopupFeatures
    {
        /// <summary>
        /// Gets the x coordinate.
        /// </summary>
        /// <value>
        /// The x coordinate.
        /// </value>
        int X { get; }
        /// <summary>
        /// Gets the set.
        /// </summary>
        /// <value>
        /// The x coordinate set.
        /// </value>
        int XSet { get; }
        /// <summary>
        /// Gets the y coordinate.
        /// </summary>
        /// <value>
        /// The y coordinate.
        /// </value>
        int Y { get; }
        /// <summary>
        /// Gets the set.
        /// </summary>
        /// <value>
        /// The y coordinate set.
        /// </value>
        int YSet { get; }
        /// <summary>
        /// Gets the width.
        /// </summary>
        /// <value>
        /// The width.
        /// </value>
        int Width { get; }
        /// <summary>
        /// Gets the set the width belongs to.
        /// </summary>
        /// <value>
        /// The width set.
        /// </value>
        int WidthSet { get; }
        /// <summary>
        /// Gets the height.
        /// </summary>
        /// <value>
        /// The height.
        /// </value>
        int Height { get; }
        /// <summary>
        /// Gets the set the height belongs to.
        /// </summary>
        /// <value>
        /// The height set.
        /// </value>
        int HeightSet { get; }
        /// <summary>
        /// Gets a value indicating whether the menu bar is visible.
        /// </summary>
        /// <value>
        /// True if menu bar visible, false if not.
        /// </value>
        bool MenuBarVisible { get; }
        /// <summary>
        /// Gets a value indicating whether the status bar is visible.
        /// </summary>
        /// <value>
        /// True if status bar visible, false if not.
        /// </value>
        bool StatusBarVisible { get; }
        /// <summary>
        /// Gets a value indicating whether the tool bar is visible.
        /// </summary>
        /// <value>
        /// True if tool bar visible, false if not.
        /// </value>
        bool ToolBarVisible { get; }
        /// <summary>
        /// Gets a value indicating whether the scrollbars is visible.
        /// </summary>
        /// <value>
        /// True if scrollbars visible, false if not.
        /// </value>
        bool ScrollbarsVisible { get; }
    }
}