[Overview][Constants][Types][Classes][Procedures and functions][Index] Reference for unit 'Laz2_DOM' (#lazutils)

TDOMNode.IsSupported

Indicates if the DOM implementation supports a specific feature at a given conformance level.

Declaration

Source position: laz2_dom.pas line 288

public function TDOMNode.IsSupported(

  const Feature: DOMString;

  const Version: DOMString

):Boolean;

Arguments

Feature

  

Name of the feature or module to check in the method.

Version

  

Version number or conformance level required for the feature.

Function result

True when the feature and version number are supported in the DOM implementation.

Description

IsSupported is a Boolean function which indicates whether the DOM implementation implements a specific feature and that feature is supported in this node. IsSupported implements the DOM Node method defined in the DOM Level 2 Specification.

Feature contains the name for the feature or module to check in the method.

Version contains the conformance level for the specified Feature. Both values are used as arguments to the TDOMImplementation.HasFeature method.

Returns True if the specified feature at the given conformance level is supported for the node, or False when not implemented.

See also

TDOMImplementation.HasFeature

  

Indicates if a feature or module is supported in the DOM implementation.


Version 3.2 Generated 2024-02-25 Home