UIView.InheritedAnimationDuration Proprietà
Definizione
Importante
Alcune informazioni sono relative alla release non definitiva del prodotto, che potrebbe subire modifiche significative prima della release definitiva. Microsoft non riconosce alcuna garanzia, espressa o implicita, in merito alle informazioni qui fornite.
Metodo statico che restituisce la durata dell'animazione attualmente attiva, in secondi.
[ObjCRuntime.Introduced(ObjCRuntime.PlatformName.iOS, 9, 0, ObjCRuntime.PlatformArchitecture.All, null)]
public static double InheritedAnimationDuration { [Foundation.Export("inheritedAnimationDuration")] [ObjCRuntime.Introduced(ObjCRuntime.PlatformName.iOS, 9, 0, ObjCRuntime.PlatformArchitecture.All, null)] get; }
member this.InheritedAnimationDuration : double
Valore della proprietà
Il valore predefinito è 0.
- Attributi
Commenti
Questa proprietà mostra la durata dell'animazione attualmente attiva.
UIView.Animate(2.0, () => {
//...Animation
var inheritedDuration = UIView.InheritedAnimationDuration;
// inheritedDuration == 2.0
});
var defaultDuration = UIView.InheritedAnimationDuration;
// defaultDuration == 0.0