NonVisualDrawingProperties.Hidden Property
Hidden.Represents the attribte in schema: hidden
Namespace: DocumentFormat.OpenXml.Drawing
Assembly: DocumentFormat.OpenXml (in DocumentFormat.OpenXml.dll)
Syntax
'Declaration
<SchemaAttrAttribute(, "hidden")> _
Public Property Hidden As BooleanValue
Get
Set
'Usage
Dim instance As NonVisualDrawingProperties
Dim value As BooleanValue
value = instance.Hidden
instance.Hidden = value
[SchemaAttrAttribute(, "hidden")]
public BooleanValue Hidden { get; set; }
Property Value
Type: DocumentFormat.OpenXml.BooleanValue
Returns BooleanValue.
Remarks
The following information from the ECMA International Standard ECMA-376 can be useful when working with this class.
Specifies whether this DrawingML object shall be displayed. When a DrawingML object is displayed within a document, that object may be hidden (i.e., present, but not visible). This attribute shall determine whether the object shall be rendered or made hidden. An application may have settings which allow this object to be viewed.
If this attribute is omitted, then the parent DrawingML object shall be displayed (i.e., not hidden).
Consider an inline DrawingML object which shall be hidden within the document's content. This setting would be specified as follows:
<… hidden="true" />
The hidden attribute has a value of true, which specifies that the DrawingML object is hidden and not displayed when the document is displayed.
The possible values for this attribute are defined by the XML Schema boolean datatype.
See Also
Reference
NonVisualDrawingProperties Class