Class WebSettings

Definition

Namespace:
Tizen.NUI
Assembly:
Tizen.NUI.dll

WebSettings is a class for settings of web view.

C#
Copy
public class WebSettings : Disposable
Inheritance
WebSettings

Properties

View Source

ArrowScrollEnabled

Enables arrow scroll

Declaration
C#
Copy
public bool ArrowScrollEnabled { get; set; }
Property Value
Type Description
Boolean
View Source

AutofillPasswordFormEnabled

Enables autofill password form

Declaration
C#
Copy
public bool AutofillPasswordFormEnabled { get; set; }
Property Value
Type Description
Boolean
View Source

AutoFittingEnabled

Enables auto fitting

Declaration
C#
Copy
public bool AutoFittingEnabled { get; set; }
Property Value
Type Description
Boolean
View Source

AutomaticImageLoadingAllowed

Allows images load automatically or not.

Declaration
C#
Copy
public bool AutomaticImageLoadingAllowed { get; set; }
Property Value
Type Description
Boolean
View Source

CacheBuilderEnabled

Enables cache builder.

Declaration
C#
Copy
public bool CacheBuilderEnabled { get; set; }
Property Value
Type Description
Boolean
View Source

ClipboardEnabled

Enables clipboard

Declaration
C#
Copy
public bool ClipboardEnabled { get; set; }
Property Value
Type Description
Boolean
View Source

DefaultFontSize

Default font size.

Declaration
C#
Copy
public int DefaultFontSize { get; set; }
Property Value
Type Description
Int32
View Source

DefaultTextEncodingName

Default text encoding name.

Declaration
C#
Copy
public string DefaultTextEncodingName { get; set; }
Property Value
Type Description
String
View Source

DoNotTrackEnabled

Enables web feature that does not track to protect user privacy security.

Declaration
C#
Copy
public bool DoNotTrackEnabled { get; set; }
Property Value
Type Description
Boolean
View Source

FileAccessFromExternalUrlAllowed

Allows file access from external url or not.

Declaration
C#
Copy
public bool FileAccessFromExternalUrlAllowed { get; set; }
Property Value
Type Description
Boolean
View Source

FormCandidateDataEnabled

Enables form candidate data

Declaration
C#
Copy
public bool FormCandidateDataEnabled { get; set; }
Property Value
Type Description
Boolean
View Source

ImePanelEnabled

Enables IME panel

Declaration
C#
Copy
public bool ImePanelEnabled { get; set; }
Property Value
Type Description
Boolean
View Source

JavaScriptEnabled

Enables JavaScript or not.

Declaration
C#
Copy
public bool JavaScriptEnabled { get; set; }
Property Value
Type Description
Boolean
View Source

KeypadWithoutUserActionUsed

Uses keypad without user action

Declaration
C#
Copy
public bool KeypadWithoutUserActionUsed { get; set; }
Property Value
Type Description
Boolean
View Source

LinkMagnifierEnabled

Enables link magnifier

Declaration
C#
Copy
public bool LinkMagnifierEnabled { get; set; }
Property Value
Type Description
Boolean
View Source

MixedContentsAllowed

Allows mixed contents or not.

Declaration
C#
Copy
public bool MixedContentsAllowed { get; set; }
Property Value
Type Description
Boolean
View Source

PluginsEnabled

Enables plugins

Declaration
C#
Copy
public bool PluginsEnabled { get; set; }
Property Value
Type Description
Boolean
View Source

PrivateBrowsingEnabled

Enables private browsing

Declaration
C#
Copy
public bool PrivateBrowsingEnabled { get; set; }
Property Value
Type Description
Boolean
View Source

ScriptsOpenWindowsAllowed

Allows scripts open windows or not.

Declaration
C#
Copy
public bool ScriptsOpenWindowsAllowed { get; set; }
Property Value
Type Description
Boolean
View Source

ScrollbarThumbFocusNotificationsUsed

Uses scrollbar thumb focus notifications

Declaration
C#
Copy
public bool ScrollbarThumbFocusNotificationsUsed { get; set; }
Property Value
Type Description
Boolean
View Source

SpatialNavigationEnabled

Enables spatial navigation or not.

Declaration
C#
Copy
public bool SpatialNavigationEnabled { get; set; }
Property Value
Type Description
Boolean
View Source

TextAutosizingEnabled

Enables text autosizing

Declaration
C#
Copy
public bool TextAutosizingEnabled { get; set; }
Property Value
Type Description
Boolean
View Source

TextSelectionEnabled

Enables text selection

Declaration
C#
Copy
public bool TextSelectionEnabled { get; set; }
Property Value
Type Description
Boolean
View Source

TextZoomEnabled

Enables text zoom

Declaration
C#
Copy
public bool TextZoomEnabled { get; set; }
Property Value
Type Description
Boolean
View Source

ViewportMetaTag

Viewport meta tag.

Declaration
C#
Copy
public bool ViewportMetaTag { get; set; }
Property Value
Type Description
Boolean
View Source

WebSecurityEnabled

Enables web security or not.

Declaration
C#
Copy
public bool WebSecurityEnabled { get; set; }
Property Value
Type Description
Boolean
View Source

ZoomForced

Forces zoom

Declaration
C#
Copy
public bool ZoomForced { get; set; }
Property Value
Type Description
Boolean

Methods

View Source

EnableExtraFeature(String, Boolean)

Enables the given extra feature.

Declaration
C#
Copy
public void EnableExtraFeature(string str, bool tag)
Parameters
Type Name Description
String str

The string of extra feature.

Boolean tag

Enable or disable.

View Source

IsExtraFeatureEnabled(String)

Checks the extra feature is enabled or not.

Declaration
C#
Copy
public bool IsExtraFeatureEnabled(string str)
Parameters
Type Name Description
String str

The string of extra feature.

Returns
Type Description
Boolean

Extension Methods