Version

RegisterDeferredScrollHost Method

Method used to register a class type that supports deferred scrolling.
Syntax
'Declaration
 
Public Shared Sub RegisterDeferredScrollHost( _
   ByVal classType As Type _
) 
public static void RegisterDeferredScrollHost( 
   Type classType
)

Parameters

classType
The UIElement or ContentElement type that implements the IDeferredScrollHost interface.
Exceptions
ExceptionDescription
System.ArgumentException'classType' does not derive from 'UIElement' or 'ContentElement' or does not implement 'IDeferredScrollHost'.
System.ArgumentNullException'classType' is a null reference (Nothing in Visual Basic)
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