UIVisualEffectView.GetAppearance Method
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.
Overloads
GetAppearance(UITraitCollection) |
Returns an appearance proxy for the specified |
GetAppearance(UITraitCollection, Type[]) |
Returns an appearance proxy for the specified |
GetAppearance<T>() |
Obtains the appearance proxy UIVisualEffectView.UIVisualEffectViewAppearance for the subclass of UIVisualEffectView. |
GetAppearance<T>(UITraitCollection) |
Obtains the appearance proxy UIVisualEffectView.UIVisualEffectViewAppearance for the subclass of UIVisualEffectView. |
GetAppearance<T>(UITraitCollection, Type[]) |
Obtains the appearance proxy UIVisualEffectView.UIVisualEffectViewAppearance for the subclass of UIVisualEffectView that has the specified trait collection when the view is hosted in the specified hierarchy. |
GetAppearance(UITraitCollection)
Returns an appearance proxy for the specified traits
collection.
public static UIKit.UIVisualEffectView.UIVisualEffectViewAppearance GetAppearance (UIKit.UITraitCollection traits);
static member GetAppearance : UIKit.UITraitCollection -> UIKit.UIVisualEffectView.UIVisualEffectViewAppearance
Parameters
- traits
- UITraitCollection
Returns
Applies to
GetAppearance(UITraitCollection, Type[])
Returns an appearance proxy for the specified traits
when found in the containers
containment hierarchy.
public static UIKit.UIVisualEffectView.UIVisualEffectViewAppearance GetAppearance (UIKit.UITraitCollection traits, params Type[] containers);
static member GetAppearance : UIKit.UITraitCollection * Type[] -> UIKit.UIVisualEffectView.UIVisualEffectViewAppearance
Parameters
- traits
- UITraitCollection
- containers
- Type[]
Returns
Applies to
GetAppearance<T>()
Obtains the appearance proxy UIVisualEffectView.UIVisualEffectViewAppearance for the subclass of UIVisualEffectView.
public static UIKit.UIVisualEffectView.UIVisualEffectViewAppearance GetAppearance<T> () where T : UIKit.UIVisualEffectView;
static member GetAppearance : unit -> UIKit.UIVisualEffectView.UIVisualEffectViewAppearance (requires 'T :> UIKit.UIVisualEffectView)
Type Parameters
- T
The type for which the UIAppearance proxy must be returned. This is a subclass of UIVisualEffectView.
Returns
appearance proxy object for the specified type.
Remarks
Setting any appearance properties on the returned object will affect the appearance of all classes and subclasses of the type parameter.
Unlike the Appearance property, or the AppearanceWhenContainedIn(Type[]) method which only work on instances of this particular class, the proxies returned by GetAppearance can be used to change the style of subclasses.
The following example shows how the GetAppearance method works
var myTheme = UIVisualEffectView.GetAppearance<MyUIVisualEffectViewSubclass> ();
myTheme.TintColor = UIColor.Red;
For more information, see the documentation for the UIAppearance class.
Applies to
GetAppearance<T>(UITraitCollection)
Obtains the appearance proxy UIVisualEffectView.UIVisualEffectViewAppearance for the subclass of UIVisualEffectView.
public static UIKit.UIVisualEffectView.UIVisualEffectViewAppearance GetAppearance<T> (UIKit.UITraitCollection traits) where T : UIKit.UIVisualEffectView;
static member GetAppearance : UIKit.UITraitCollection -> UIKit.UIVisualEffectView.UIVisualEffectViewAppearance (requires 'T :> UIKit.UIVisualEffectView)
Type Parameters
- T
The type for which the UIAppearance proxy must be returned. This is a subclass of UIVisualEffectView.
Parameters
- traits
- UITraitCollection
Trait collection to match.
Returns
appearance proxy object for the specified type.
Remarks
The returned object represents the UIAppearance proxy where developers can set appearance properties for instances of UIVisualEffectView.
Unlike the Appearance property, or the AppearanceWhenContainedIn(Type[]) method which only work on instances of this particular class, the proxies returned by GetAppearance can be used to change the style of subclasses.
The following example shows how the GetAppearance method works
var myTheme = UIVisualEffectView.GetAppearance<MyUIVisualEffectViewSubclass> (myTraits, );
myTheme.TintColor = UIColor.Red;
For more information, see the documentation for the UIAppearance class.
Applies to
GetAppearance<T>(UITraitCollection, Type[])
Obtains the appearance proxy UIVisualEffectView.UIVisualEffectViewAppearance for the subclass of UIVisualEffectView that has the specified trait collection when the view is hosted in the specified hierarchy.
public static UIKit.UIVisualEffectView.UIVisualEffectViewAppearance GetAppearance<T> (UIKit.UITraitCollection traits, params Type[] containers) where T : UIKit.UIVisualEffectView;
static member GetAppearance : UIKit.UITraitCollection * Type[] -> UIKit.UIVisualEffectView.UIVisualEffectViewAppearance (requires 'T :> UIKit.UIVisualEffectView)
Type Parameters
- T
The type for which the UIAppearance proxy must be returned. This is a subclass of UIVisualEffectView.
Parameters
- traits
- UITraitCollection
Trait collection to match.
- containers
- Type[]
List of types that the developer wishes to have as the containers to apply this particular appearance.
Returns
appearance proxy object for the specified type.
Remarks
The returned object represents the UIAppearance proxy where developers can set appearance properties for instances of UIVisualEffectView that has the specified trait collection when the view is hosted in the specified hierarchy when those instances are contained in the hierarchy specified by the containers
parameter.
Unlike the Appearance property, or the AppearanceWhenContainedIn(Type[]) method which only work on instances of this particular class, the proxies returned by GetAppearance can be used to change the style of subclasses.
The following example shows how the GetAppearance method works
var myTheme = UIVisualEffectView.GetAppearance<MyUIVisualEffectViewSubclass> (myTraits, typeof (UINavigationBar), typeof (UIPopoverController));
myTheme.TintColor = UIColor.Red;
For more information, see the documentation for the UIAppearance class.