os/textandloc/textrendering/texthandling/inc/FLDINFO.H
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
Update contrib.
     1 /*
     2 * Copyright (c) 1997-2009 Nokia Corporation and/or its subsidiary(-ies).
     3 * All rights reserved.
     4 * This component and the accompanying materials are made available
     5 * under the terms of "Eclipse Public License v1.0"
     6 * which accompanies this distribution, and is available
     7 * at the URL "http://www.eclipse.org/legal/epl-v10.html".
     8 *
     9 * Initial Contributors:
    10 * Nokia Corporation - initial contribution.
    11 *
    12 * Contributors:
    13 *
    14 * Description: 
    15 *
    16 */
    17 
    18 
    19 #ifndef __FLDINFO_H__
    20 #define __FLDINFO_H__
    21 
    22 #include <e32std.h>
    23 
    24 
    25 
    26 class TFindFieldInfo
    27 /** 
    28 information returned from a "Find the fields in this range" request
    29 Gets information about the fields found in a range of characters by CPlainText::FindFields().
    30 
    31 This information is the number of fields fully or partially within the range 
    32 and the start position and length of the first field found. 
    33 @publishedAll
    34 @released
    35 */
    36 	{
    37 public:
    38 	IMPORT_C TBool operator==(const TFindFieldInfo& aInfo)const;
    39 	IMPORT_C TBool operator!=(const TFindFieldInfo& aInfo)const;
    40 public:
    41 	/** The number of fields found in the specified range. */
    42 	TInt iFieldCountInRange; // number of fields found in the specified range
    43 	/** The document position of the start of the first field in the range. */
    44 	TInt iFirstFieldPos; // character position of the start of the first field in the range
    45 	/** The length of the first field in the range. */
    46 	TInt iFirstFieldLen; // length of the first field in the range
    47 	};
    48 
    49 
    50 #endif