Strokes.IsSynchronized Property

Strokes.IsSynchronized Property

Gets a value that indicates whether or not access to the Strokes collection is synchronized (thread safe).

Definition

Visual Basic .NET Public ReadOnly Property IsSynchronized As Boolean
C# public bool IsSynchronized { get; }
Managed C++ public: __property bool* get_IsSynchronized();

Property Value

System.Boolean. Returns false in all cases. Access to the Strokes collection is not synchronized (is not thread-safe).

This property is read-only. This property has no default value.

false Access to the Strokes collection is not synchronized (is not thread-safe).

Remarks

The SyncRoot property returns an object that can be used to synchronize access to the Strokes collection.

The Strokes collection implements the ICollection Leave Site interface. For more information about the IsSynchronized property, see ICollection.IsSynchronized Leave Site.

See Also