VirtualizationCacheLength Constructors
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Creates a new instance of the VirtualizationCacheLength class.
Overloads
VirtualizationCacheLength(Double) |
Creates a new instance of the VirtualizationCacheLength class with a uniform cache length for each side of the viewport. |
VirtualizationCacheLength(Double, Double) |
Creates a new instance of the VirtualizationCacheLength class with the specified cache lengths for each side of the viewport. |
VirtualizationCacheLength(Double)
Creates a new instance of the VirtualizationCacheLength class with a uniform cache length for each side of the viewport.
public:
VirtualizationCacheLength(double cacheBeforeAndAfterViewport);
public VirtualizationCacheLength (double cacheBeforeAndAfterViewport);
new System.Windows.Controls.VirtualizationCacheLength : double -> System.Windows.Controls.VirtualizationCacheLength
Public Sub New (cacheBeforeAndAfterViewport As Double)
Parameters
- cacheBeforeAndAfterViewport
- Double
The size of the cache before and after the viewport.
Applies to
VirtualizationCacheLength(Double, Double)
Creates a new instance of the VirtualizationCacheLength class with the specified cache lengths for each side of the viewport.
public:
VirtualizationCacheLength(double cacheBeforeViewport, double cacheAfterViewport);
public VirtualizationCacheLength (double cacheBeforeViewport, double cacheAfterViewport);
new System.Windows.Controls.VirtualizationCacheLength : double * double -> System.Windows.Controls.VirtualizationCacheLength
Public Sub New (cacheBeforeViewport As Double, cacheAfterViewport As Double)
Parameters
- cacheBeforeViewport
- Double
The size of the cache before the viewport.
- cacheAfterViewport
- Double
The size of the cache after the viewport.