Version

GetReturnObject Method (XamRibbonProxy)

Returns the object that contains the input header and/or count as needed. If only the header is needed, the returned object will be a header string If only the count is needed, the returned object will be a count integer If both header and count are needed, the returned object will be a list of header followed by count
Syntax
'Declaration
 
Protected Function GetReturnObject( _
   ByVal sHeader As System.String, _
   ByVal iCount As System.Integer, _
   ByVal bNeedHeaders As System.Boolean, _
   ByVal bNeedCount As System.Boolean _
) As System.Object
protected System.object GetReturnObject( 
   System.string sHeader,
   System.int iCount,
   System.bool bNeedHeaders,
   System.bool bNeedCount
)
protected: System.Object* GetReturnObject( 
   System.string* sHeader,
   System.int iCount,
   System.bool bNeedHeaders,
   System.bool bNeedCount
) 

Parameters

sHeader
The header string
iCount
the count integer
bNeedHeaders
Boolean if true indicates returning the header
bNeedCount
Boolean if true indicates returning the count

Return Value

Returns the object that contains the input header and/or count as needed.
Requirements

Target Platforms: 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