»
Symbian OS v9.3 »
Symbian OS reference »
C++ component reference »
Content Handling CONTENT_HANDLING »
TCHFValue
This item is not part of the S60 3rd Edition SDK for Symbian OS, Feature Pack 2.
class TCHFValue;
Description
Encapsulates a reference to a value which can be one of many different types.
Members
Defined in TCHFValue
:
Any()
, Control()
, Int()
, Point()
, PtrC16()
, PtrC8()
, Rect()
, TCHFValue()
, TCHFValue()
, TCHFValue()
, TCHFValue()
, TCHFValue()
, TCHFValue()
, TCHFValue()
, TCHFValue()
, TCHFValue()
, TCHFValue()
, ValueArray()
See also:
Construction and destruction
inline TCHFValue();
Description
Constructor for an empty value.
inline TCHFValue(TAny *aValue);
Description
Constructor for a TAny* value.
Parameters
TAny *aValue |
Value to encapsulate
|
|
inline TCHFValue(TInt &aValue);
Description
Constructor for a TInt value.
Parameters
TInt &aValue |
Value to encapsulate
|
|
inline TCHFValue(TRect &aValue);
Description
Constructor for a TRect
value.
Parameters
TRect &aValue |
Value to encapsulate
|
|
inline TCHFValue(TPoint &aValue);
Description
Constructor for a TPoint
value.
Parameters
TPoint &aValue |
Value to encapsulate
|
|
inline TCHFValue(TPtrC8 &aValue);
Description
Constructor for a TPtrC8
value.
Parameters
TPtrC8 &aValue |
Value to encapsulate
|
|
inline TCHFValue(TPtrC16 &aValue);
Description
Constructor for a TPtrC16
value.
Parameters
TPtrC16 &aValue |
Value to encapsulate
|
|
inline TCHFValue(CCHFContentHandler *&aValue);
Description
Parameters
inline TCHFValue(RArray< TCHFValue > &aValue);
Description
Constructor for an array of TCHFValue objects.
Parameters
inline TCHFValue(CCoeControl &aValue);
Description
Constructor for a Cone Control object.
Parameters
CCoeControl &aValue |
Value to encapsulate
|
|
inline TAny *Any() const;
Description
Returns a TAny* stored value.
The value is returned as a reference and may be changed.
Return value
Panic codes
CHFPanic::ECHFValueInvalidType |
if the value stored is not of this type
|
|
inline TInt &Int() const;
Description
Returns a TInt stored value.
The value is returned as a reference and may be changed.
Return value
Panic codes
CHFPanic::ECHFValueInvalidType |
if the value stored is not of this type
|
|
inline TRect &Rect() const;
Description
Returns a TRect
stored value.
The value is returned as a reference and may be changed.
Return value
Panic codes
CHFPanic::ECHFValueInvalidType |
if the value stored is not of this type
|
|
inline TPoint &Point() const;
Description
Returns a TPoint
stored value.
The value is returned as a reference and may be changed.
Return value
Panic codes
CHFPanic::ECHFValueInvalidType |
if the value stored is not of this type
|
|
inline TPtrC8 &PtrC8() const;
Description
Returns a TPtrC8
stored value.
The value is returned as a reference and may be changed.
Return value
Panic codes
CHFPanic::ECHFValueInvalidType |
if the value stored is not of this type
|
|
inline TPtrC16 &PtrC16() const;
Description
Returns a TPtrC16
stored value.
The value is returned as a reference and may be changed
Return value
Panic codes
CHFPanic::ECHFValueInvalidType |
if the value stored is not of this type
|
|
inline RArray< TCHFValue > &ValueArray() const;
Description
Returns an array of stored values.
The value is returned as a reference and may be changed
Return value
Panic codes
CHFPanic::ECHFValueInvalidType |
if the value stored is not of this type
|
|
inline CCoeControl &Control() const;
Description
Returns a CCoeControl stored value.
The value is returned as a reference and may be changed.
Return value
CCoeControl & |
Stored value
|
|
Panic codes
CHFPanic::ECHFValueInvalidType |
if the value stored is not of this type
|
|