Version

ApplyValueAppearance Method (EmbeddableEditorBase)

Applies any appearance associated with the dataVal data value. Base implementation does nothing.
Syntax
'Declaration
 
Public Overridable Sub ApplyValueAppearance( _
   ByRef appData As AppearanceData, _
   ByRef resolveFlags As AppearancePropFlags, _
   ByVal dataVal As Object, _
   ByVal owner As EmbeddableEditorOwnerBase, _
   ByVal ownerContext As Object _
) 
public virtual void ApplyValueAppearance( 
   ref AppearanceData appData,
   ref AppearancePropFlags resolveFlags,
   object dataVal,
   EmbeddableEditorOwnerBase owner,
   object ownerContext
)

Parameters

appData
The AppearanceData to resolve.
resolveFlags
Properties to resolve.
dataVal
Data value.
owner
The EmbeddableEditorOwnerBase of the editor.
ownerContext
The owner context, used to provide additional information.
Remarks
A derived class can override this method to apply any appearance settings assoicated with the data value to this object. For example, an editor that makes use fo value list items can apply appearance of the value list item associated with dataVal.
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