Click or drag to resize
AB4D logo

ReaderSvgAddHiddenElements Property

Gets or sets a Boolean that specifies if hidden elements are read. Default value is true.

Namespace:  Ab2d
Assembly:  Ab2d.ReaderSvg (in Ab2d.ReaderSvg.dll) Version: 7.1.7295.1040
Syntax
C#
public bool AddHiddenElements { get; set; }

Property Value

Type: Boolean
Remarks

AddHiddenElements specifies if hidden elements are read.

The elements is hidden if in svg file its visibility attribute is set to "hidden" or display attribute is set to "none".

If visibility attribute is set to "hidden", than the element is hidden but it still occupies space (Visibility.Hidden).
If display attribute is set to "none", that the element is hidden and it does not occupy space (Visibility.Collapsed).

If AddHiddenElements is true (default) the hidden elements are read and their Visibility is set to Hidden or Collapsed value.

If AddHiddenElements is false the hidden elements are skipped.

See Also