Click or drag to resize
GeometrySettingsConvertToStreamGeometry Property
If true all geometry objects are converted to StreamGeometry for better performance. Note the if CombineGeometries is true, geometries are always converted into StreamGeometry regardless of ConvertToStreamGeometry.

Namespace: Ab2d.Common.ReaderWmf
Assembly: Ab2d.ReaderWmf (in Ab2d.ReaderWmf.dll) Version: 7.1.5512.1040
Syntax
C#
public bool ConvertToStreamGeometry { get; set; }

Property Value

Type: Boolean
Remarks
The StreamGeometry object is a light-weight alternative to PathGeometry for creating geometric shapes. Use a StreamGeometry when you need to describe a complex geometry. StreamGeometry is optimized for handling many PathGeometry objects and performs better when compared to using many individual PathGeometry objects.
See Also