Version

ResolveAppearance(AppearanceData,AppearancePropFlags) Method

Resolves the appearance of the edit portion of the combo.
Syntax
'Declaration
 
Public Sub ResolveAppearance( _
   ByRef appData As Infragistics.Win.AppearanceData, _
   ByVal requestedProps As Infragistics.Win.AppearancePropFlags _
) 
public void ResolveAppearance( 
   ref Infragistics.Win.AppearanceData appData,
   Infragistics.Win.AppearancePropFlags requestedProps
)

Parameters

appData
An Infragistics.Win.AppearanceData object whose properties will be set to the resolved values.
requestedProps
An Infragistics.Win.AppearancePropFlags enumeration value which determines which properties to resolve.
Remarks

The ResolveAppearance method will resolve all appearance properties of the combo control and set those properties on the Infragistics.Win.AppearanceData passed in. The properties of the AppearanceData will be set to actual literal values, there will be no defaults. You can use this method to determine the final, resolved colors, fonts, or other settings that the control will be displaying based on all of it's relevant properties.

The requestedProps parameter is a flags enumeration that allows you to specify which proeprties are returned. It is recommended that you only get the properties you need to acomplish what you want for maximum efficiency.

Requirements

Target Platforms: Windows 10, Windows 8.1, Windows 8, Windows 7, Windows Server 2012, Windows 7, 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