Version

ResetOverridingProperties<T> Method

Compares two instances and resets any properties in the target instance if they are set on the source instance so source values are allowed to be used in a resolved settings instance.
Syntax
'Declaration
 
Public Shared Sub ResetOverridingProperties(Of T As RichTextObjectBase)( _
   ByVal source As T, _
   ByVal target As T _
) 
public static void ResetOverridingProperties<T>( 
   T source,
   T target
)
where T: RichTextObjectBase

Parameters

source
The source instance for comparing property values. The source can be null
target
The target instance whose properties should be reset if they are set on the source instance. The target can be null.

Type Parameters

T
The type of which both the source and target, if non-null, must be instances.
Requirements

Target Platforms: Windows 10, Windows 8.1, Windows 8, Windows 7, Windows Server 2012, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

See Also