Condividi tramite


RenderOptions.GetCacheInvalidationThresholdMinimum(DependencyObject) Metodo

Definizione

Restituisce il valore della proprietà associata CacheInvalidationThresholdMinimum relativa a un oggetto dipendenza specificato.

public:
 static double GetCacheInvalidationThresholdMinimum(System::Windows::DependencyObject ^ target);
[System.Windows.AttachedPropertyBrowsableForType(typeof(System.Windows.Media.TileBrush))]
public static double GetCacheInvalidationThresholdMinimum (System.Windows.DependencyObject target);
[<System.Windows.AttachedPropertyBrowsableForType(typeof(System.Windows.Media.TileBrush))>]
static member GetCacheInvalidationThresholdMinimum : System.Windows.DependencyObject -> double
Public Shared Function GetCacheInvalidationThresholdMinimum (target As DependencyObject) As Double

Parametri

target
DependencyObject

Oggetto dipendenza da cui recuperare il valore della proprietà associata CacheInvalidationThresholdMinimum.

Restituisce

Double

Valore corrente della proprietà associata CacheInvalidationThresholdMinimum per l'oggetto dipendenza specificato.

Attributi

Eccezioni

Il valore specificato per il parametro target è null.

Esempio

Nell'esempio seguente viene illustrato come recuperare i valori degli hint di memorizzazione nella cache per un oggetto DrawingBrush.

// Get the caching hint option for the brush.
CachingHint cachingHint = RenderOptions.GetCachingHint(drawingBrush);

if (cachingHint == CachingHint.Cache)
{
    // Get the minimum and maximum relative sizes for regenerating the tiled brush.
    double minimum = RenderOptions.GetCacheInvalidationThresholdMinimum(drawingBrush);
    double maximum = RenderOptions.GetCacheInvalidationThresholdMaximum(drawingBrush);

    // Perform action based on cache values...
}
' Get the caching hint option for the brush.
Dim cachingHintOpt As CachingHint = RenderOptions.GetCachingHint(drawingBrush)

If cachingHintOpt = CachingHint.Cache Then
    ' Get the minimum and maximum relative sizes for regenerating the tiled brush.
    Dim minimum As Double = RenderOptions.GetCacheInvalidationThresholdMinimum(drawingBrush)
    Dim maximum As Double = RenderOptions.GetCacheInvalidationThresholdMaximum(drawingBrush)

    ' Perform action based on cache values...
End If

Si applica a

Vedi anche