SequenceTimeNode.Concurrent Property
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Concurrent
Represents the following attribute in the schema: concurrent
[DocumentFormat.OpenXml.SchemaAttr(0, "concurrent")]
public DocumentFormat.OpenXml.BooleanValue Concurrent { get; set; }
public DocumentFormat.OpenXml.BooleanValue Concurrent { get; set; }
[DocumentFormat.OpenXml.SchemaAttr(0, "concurrent")]
public DocumentFormat.OpenXml.BooleanValue? Concurrent { get; set; }
[DocumentFormat.OpenXml.SchemaAttr("concurrent")]
public DocumentFormat.OpenXml.BooleanValue? Concurrent { get; set; }
public DocumentFormat.OpenXml.BooleanValue? Concurrent { get; set; }
member this.Concurrent : DocumentFormat.OpenXml.BooleanValue with get, set
[<DocumentFormat.OpenXml.SchemaAttr(0, "concurrent")>]
member this.Concurrent : DocumentFormat.OpenXml.BooleanValue with get, set
[<DocumentFormat.OpenXml.SchemaAttr("concurrent")>]
member this.Concurrent : DocumentFormat.OpenXml.BooleanValue with get, set
Public Property Concurrent As BooleanValue
Property Value
Returns BooleanValue.
- Attributes
Remarks
The following information from the ECMA International Standard ECMA-376 can be useful when working with this class.
This attribute specifies if concurrency is enabled or disabled. By default this attribute has a value of disabled
. When the value is set to enabled
, the previous element is left enabled when advancing to the next element in a sequence instead of being ended. This is only relevant for advancing via the next condition element being triggered. The only other way to advance to the next element would be to have the current element end, which implies it is no longer concurrent.
The possible values for this attribute are defined by the XML Schema boolean
datatype.