Table of Contents

Class BarProp

Namespace
CSharpToJavaScript.APIs.JS
Assembly
CSharpToJavaScript.dll

The BarProp interface of the Document Object Model represents the web browser user interface elements that are exposed to scripts in web pages. Each of the following interface elements are represented by a BarProp object.

[Value("BarProp")]
public class BarProp
Inheritance
BarProp
Inherited Members

Remarks

The BarProp interface is not accessed directly, but via one of these elements.

See also on MDN

Constructors

BarProp()

public BarProp()

Properties

Visible

The visible read-only property of the BarProp interface returns true if the user interface element it represents is visible.

[Value("visible")]
public bool Visible { get; }

Property Value

bool

A {{jsxref("Boolean")}}, which is true if the top-level window is opened by Open(string, string, string) with the popup feature enabled.

NOTE
Historically this represented whether the interface element used is visible
or not. But for privacy reasons, this no longer represents the actual visibility of each
interface element.

Remarks