#include <SHGAPI.H>
Link against:
sheng.lib
This item is not part of the S60 5th Edition SDK
Interface status: |
deprecated |
|
class CShgProtectionIter : public CBase;
Description
An iterator over the protected or unprotected cell ranges in a worksheet.
Derivation
CBase
-
Base class for all classes to be instantiated on the heap.
CShgProtectionIter
- An iterator over the protected or unprotected cell ranges in a worksheet.
Members
Defined in CShgProtectionIter
:
Inherited from CBase
:
Construction and destruction
NewL(const CShgWorkSheet *,TBool)
Interface status: |
deprecated |
Inherited from: CShgProtectionIter |
IMPORT_C static CShgProtectionIter* NewL(const CShgWorkSheet *aWorkSheet, TBool aProtectionSetting);
Description
Allocates and constructs a protected cells iterator.
Parameters
const CShgWorkSheet *aWorkSheet |
Worksheet to iterate on
|
TBool aProtectionSetting |
If true, include only protected cells in the iteration; if false, include only unprotected cells in the iteration
|
|
Return value
Interface status: |
deprecated |
Inherited from: CShgProtectionIter |
IMPORT_C virtual ~CShgProtectionIter();
Description
Destructor.
Interface status: |
deprecated |
Inherited from: CShgProtectionIter |
IMPORT_C void Reset();
Description
Resets the iterator to the start of the worksheet.
Interface status: |
deprecated |
Inherited from: CShgProtectionIter |
IMPORT_C const TRangeRef* Current();
Description
Gets the iterator's current cell range.
Return value
const TRangeRef * |
Iterator's current cell range. This is NULL when the iteration has completed.
|
|
Interface status: |
deprecated |
Inherited from: CShgProtectionIter |
IMPORT_C const TRangeRef* operator++();
Description
Increments the iterator.
Return value
const TRangeRef * |
Incremented iterator's current cell range. This is NULL when the iteration has completed.
|
|