| IconFrameFromControlObject Method  | 
 
            Creates an instance of the 
IconFrame with the specified native control object.
            
 
    Namespace: 
   Eto.Drawing
    Assembly:
   Eto (in Eto.dll) Version: 2.5.3-dev
 Syntax
Syntaxpublic static IconFrame FromControlObject(
	float scale,
	Object controlObject
)
Public Shared Function FromControlObject ( 
	scale As Single,
	controlObject As Object
) As IconFrame
static member FromControlObject : 
        scale : float32 * 
        controlObject : Object -> IconFrame 
Parameters
- scale
- Type: SystemSingle
 Scale of logical to physical pixels.
- controlObject
- Type: SystemObject
 Native control object.
Return Value
Type: 
IconFrameA new instance of the IconFrame with the native control object and scale.
 Remarks
Remarks
            This is used by platform implementations to create instances of this class with the appropriate control object.
            This is not intended to be called directly.
            
 See Also
See Also