Click or drag to resize

PropertyBagMergePropertiesFrom Method

Merges the properties from another bag into this property bag. If the same property exists already in this bag, it will be overriden by the property in the other bag.

Namespace: Altaxo.Main.Properties
Assembly: AltaxoBase (in AltaxoBase.dll) Version: 4.8.3179.0 (4.8.3179.0)
Syntax
C#
public void MergePropertiesFrom(
	PropertyBag? from,
	bool overrideExistingProperties
)

Parameters

from  PropertyBag
The bag from which to take the property values that should be merged into.
overrideExistingProperties  Boolean
If true, a property that already exist in this bag will be overriden by the property in the other bag. Otherwise, the existing property is left untouched.
See Also