GoFiler Legato Script Reference
Legato v 1.5b Application v 5.24b
|
Table of Contents | < < Previous | Next >> |
Chapter Fourteen — Project Functions (continued)
Overview
The ProjectFindEntry function looks through the project entries for a specific item using a variety of search modes while allowing entry fields to be selected.
Syntax/Parameters
Syntax
int = ProjectFindEntry ( string match, [int index], [dword options] );
Parameters
match
A string containing the match data.
index
An int that specifies the zero-based position of the entry within the project to start comparing from. The default is 0.
options
A dword specifying the search options. Options include the type of matching logic to use as well as the fields to search. The default is PROJECT_FIND_EXACT with PROJECT_FIND_IN_ALL_FIELDS without regard to text case.
Return Value
An int containing the matching index for a formatted error code. If a valid index is returned, the GetLastError function can be used to determine in which field the data was found. The code will be one of the field codes.
Remarks
When searching all fields (the default) the script cannot resume search on the same index position since a starting field cannot be specified.
The table below contains the bitwise options:
Define | Bitwise | Comment | ||||
How to Match | ||||||
PROJECT_FIND_MATCH_MASK | 0x00070000 | How to Compare | ||||
PROJECT_FIND_EXACT | 0x00000000 | Character for Character | ||||
PROJECT_FIND_CONTAINS | 0x00010000 | Partial - Contains | ||||
PROJECT_FIND_STARTS_WITH | 0x00020000 | Partial - Starts With | ||||
PROJECT_FIND_WILDCARD | 0x00030000 | Wild Card | ||||
PROJECT_FIND_MATCH_CASE | 0x00080000 | Force Case Match | ||||
What to Match | ||||||
PROJECT_FIND_FIELD_MASK | 0x0FF00000 | Look in All Fields | ||||
PROJECT_FIND_IN_ALL_FIELDS | 0x00000000 | Look in All Fields | ||||
PROJECT_FIND_ENTRY_NAME | 0x00100000 | Find by Entry Name (File) | ||||
PROJECT_FIND_RESOLVED_NAME | 0x00200000 | Find by Resolved Name | ||||
PROJECT_FIND_TYPE | 0x00400000 | Descriptive Type (Document EDGAR) | ||||
PROJECT_FIND_DESCRIPTION | 0x00800000 | File Description | ||||
PROJECT_FIND_COMMENT | 0x01000000 | Comment | ||||
PROJECT_FIND_EDIT_STATUS | 0x02000000 | Edit Status | ||||
PROJECT_FIND_SWITCHES | 0x04000000 | Publishing Switches |
Related Functions
Platform Support
Go13, Go16, GoFiler Complete, GoFiler Corporate, GoFiler, GoFiler Lite, GoXBRL
Table of Contents | < < Previous | Next >> |
© 2012-2024 Novaworks, LLC. All rights reserved worldwide. Unauthorized use, duplication or transmission prohibited by law. Portions of the software are protected by US Patents 10,095,672, 10,706,221 and 11,210,456. GoFiler™ and Legato™ are trademarks of Novaworks, LLC. EDGAR® is a federally registered trademark of the U.S. Securities and Exchange Commission. Novaworks is not affiliated with or approved by the U.S. Securities and Exchange Commission. All other trademarks are property of their respective owners. Use of the features specified in this language are subject to terms, conditions and limitations of the Software License Agreement.