framemaker_scripting
framemaker_scripting
Guide
August 2022
Contents
Overview . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 1
About this document . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 1
Naming conventions . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 1
Typographic conventions . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 2
Scripting support in FrameMaker . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 2
Development and debugging tools in ExtendScript toolkit . . . . . . . . . . . . . . . . . . . 2
ExtendScript capabilities . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 2
Creating Scripts . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 3
Accessing ESTK . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 3
Connect ESTK to FrameMaker . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 3
To write, edit, and run scripts . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 4
Using script library . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 4
Using object model viewer . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 5
ExtendScript use cases . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 5
Overview
A script is a series of commands that instructs Adobe® FrameMaker® to perform a set of specified
actions. Scripts automate repetitive tasks, such as counting the images in a book or adding an indent to
all the para tags in a file. Use scripts as a creative tool to streamline time-consuming tasks.
If you are new to scripting, you can acquaint yourself with the basic scripting concepts provided in the
Introduction to Scripting manual.
Naming conventions
To help you identify the structures, constants, and functions defined by the ESTK, this document adheres
to the following naming conventions:
1
SCRIPTING SUPPORT IN FRAMEMAKER
CHAPTER 1 OVERVIEW
Typographic conventions
Notice the use of different fonts to represent different types of information:
• What you type is shown in text like this.
• Function names, property names, structure names, returned values, constants, filter names,
program names, paths, and filenames are also shown in text like this.
ExtendScript capabilities
Using ExtendScript Toolkit, you can develop and debug ExtendScript. ExtendScript provides the following
features that make scripting easy:
• User interface development tools: The ScriptUI module defines Window objects that represent
platform-specific windows and various control elements, such as buttons and static text. Resource
specification allows you to create user-interface elements. Using the event-handling callback func-
tions, you can define the behavior of your user-interaction controls. ScriptUI provides a rich set of
containers (such as Group, Panel, and TabbedPanel) and user interface controls (such as Button,
Image, Scrollbar, Treeview, and FlashPlayer). ScriptUI works with the ExtendScript JavaScript inter-
preter to provide JavaScript programs with the ability to create and interact with user interface
elements. The Graphic customization objects provide the ability to customize the appearance of
user-interface controls before they are drawn. For details, see Chapter 4, “User-Interface Tools” in
JavaScript Tools Guide.
• Extensions:
– ExtendScript offers tools for communicating with other computers or the Internet using stan-
dard protocols. The Socket object supports low-level TCP connections. For details, see
Chapter 6, “External Communication Tools” in JavaScript Tools Guide.
– Adobe ExtendScript defines classes that simplify cross-platform file-system access. These
classes are available to all applications that support a JavaScript interface. For details, see
Chapter 3, “File System Access” in JavaScript Tools Guide.
2
CREATING SCRIPTS
CHAPTER 1 OVERVIEW
– You can extend the JavaScript DOM for an application. To extend the JavaScript DOM, write
a C or C++ shared library, compile it for the relevant platform, and load it into JavaScript as an
ExternalObject instance. A shared library is implemented by a DLL in Windows, a bundle or
framework in Mac OS, or a SharedObject in UNIX. For details, see Chapter 7, “Integrating
External Libraries” in JavaScript Tools Guide.
• Inter-application communication and messaging: ExtendScript provides a common scripting envi-
ronment for all Adobe JavaScript-enabled applications. The cross-DOM API allows implementation
of functions, such as open files and execute scripts, that are common across message-enabled
applications. Using simple syntax you can implement application-specific functionality for
message-enabled application. The BridgeTalk class of the messaging API has globally available static
properties and functions that provide access to environmental information relevant for communi-
cation between applications. The error codes defined by the interapplication messaging protocol
are compatible with the ExtendScript error codes. For details, see Chapter 5, “Interapplication
Communication with Scripts” in JavaScript Tools Guide
Creating Scripts
Adobe provides ExtendScript Toolkit (ESTK) with its applications as a scripting utility. ESTK has many
features that make it easier to use than a text editor. ESTK has a built-in syntax checker that identifies
where the problems are in your script and tries to explain how to fix them. You can run your scripts right
from the ESTK without saving the file. Running scripts without saving them first saves you time, especially
when you are learning to work with ESTK.
Accessing ESTK
When you launch ExtendScript Toolkit from FrameMaker (File > Script ...), ExtendScript Toolkit is already
connected to FrameMaker. Only when you launch ExtendScript Toolkit from Windows (Start >
Programs...), complete the following steps to connect ESTK to FrameMaker.
1) In the ExtendScript Toolkit, select Adobe FrameMaker <Version#> in the pop-up menu.
2) Click ,
If FrameMaker is not already running, a message appears: “Target Adobe FrameMaker <Version#>
is not running. Do you want to launch Adobe FrameMaker <Version#>?”
3) Click Yes.
FrameMaker is launched and connected to ESTK.
3
USING SCRIPT LIBRARY
CHAPTER 1 OVERVIEW
Using the script catalog, you can manage your existing scripts:
• Favorites: Scripts you tag as your favorite appear here.
• Autorun: These scripts run when FrameMaker is launched.
• Registered: Scripts that run on certain triggers, such as on opening a file or saving a file.
4
USING OBJECT MODEL VIEWER
CHAPTER 1 OVERVIEW
In the Object Model Viewer, select an object model under Browse to you can do the following to locate
information:
• Under Browser, select the object model for which you want the information. Object Model Viewer
displays the classes in the object model and details such as type, properties, method, and descrip-
tion of the class.
• Search for a class, method, or property.
• Bookmark a class, method, or property. It then appears under the Bookmarks section.
5
EXTENDSCRIPT USE CASES
CHAPTER 1 OVERVIEW
• Menu command scripts/scripts to extend FrameMaker functionality: Using these scripts, you can
add menus and commands in FrameMaker.
• Startup scripts: These scripts get executed when FrameMaker starts. You can set up scripts to run
at startup by copying them at the following location: <FMINSTALL_DIR>\startup. Alternatively, you
can use the Script Library dialog to register Autorun scripts.
6
EXPORT AND IMPORT XLIFF
CHAPTER 2 WHAT’S NEW IN ESTK
7
ADDING TEXT TO A DOCUMENT AND ENABLING CHANGE BARS
CHAPTER 3 SAMPLE ESTK SCRIPTS
8
CHANGING THE TABLE PROPERTIES IN A DOCUMENT
CHAPTER 3 SAMPLE ESTK SCRIPTS
Use the TblColWidths() method to change the width of the column. This method accepts the argu-
ment in a metric form. So, create the arguments as a metric object using the new Metrics()method.
NOTE: By convention, there are 72 points per inch. Multiply the inch value with 65536 to get the correct
value. 1 inch is equal to 1 * 72 * 65536 points.
9
NAMING DIFFERENCES BETWEEN SCRIPTS AND FDK
CHAPTER 4 DIFFERENCES BETWEEN SCRIPTS AND FDK
FDK Scripts
10
NAMING DIFFERENCES BETWEEN SCRIPTS AND FDK
CHAPTER 4 DIFFERENCES BETWEEN SCRIPTS AND FDK
FDK Scripts
FDK uses data types such as StrngT Scripts map the FDK data types as follows:
for strings and IntT, UintT for StringT is mapped to Javascript String.
numbers. IntT andUinT are mapped to Javascript Number.
ObjHandleT is mapped to Javascript Object.
The following examples clearly highlight the differences between scripts and the FDK.
Example 1:
The app property is readily available to all FrameMaker scripts and maps to the FO_Session object in
FDK.
In this example, you query the ActiveDoc property that returns the Active Document
Object(Doc) in the current FrameMaker Session. The reference to this object is stored in the variable
doc.
doc = app.ActiveDoc;
flow = doc.MainFlowInDoc;
sync = flow.FlowIsSynchronized;
Explanation:
• Line 1 stores the reference to the Active Document Object.
• Line 2 creates an object called flow by querying a property of the doc object.
• Line 3 queries a property of the newly created flow object (created in line 2).
You can query each of the object references as a new object recursively, until you reach the desired
object property:
sync = app.ActiveDoc.MainFlowInDoc.FlowIsSynchronized;
The same example in FDK is as follows:
F_ObjHandleT docId, flowId;
IntT sync;
docId = F_ApiGetId(0, FV_SessionId, FP_ActiveDoc);
flowId = F_ApiGetId(FV_SessionId, docId, FP_MainFlowInDoc);
sync = F_ApiGetInt(docId, flowId, FP_ FlowIsSynchronized);
As discussed in the table above, Example 1 demonstrates how FDK properties [FP_ActiveDoc,
FP_MainFlowInDoc and FP_FlowIsSynchronized] are mapped to script properties
[ActiveDoc, MainFlowInDocand FlowIsSynchronized].
Example 2:
Example 2 builds on Example 1 and shows how methods are called in scripts.
Every object has some methods of its own. These methods can be invoked in the same way as properties
are invoked.
In Example 1, you created the doc object. To invoke a method, use doc.methodname(). For example,
doc.UpdateVariables();
11
NAMING DIFFERENCES BETWEEN SCRIPTS AND FDK
CHAPTER 4 DIFFERENCES BETWEEN SCRIPTS AND FDK
The following example script fetches an Active Document and adds some text in the first paragraph of
the first flow of this document.
12
NOTIFICATIONS
CHAPTER 4 DIFFERENCES BETWEEN SCRIPTS AND FDK
doc = app.ActiveDoc;
flow = doc.MainFlowInDoc;
textFrame = flow.FirstTextFrameInFlow;
pgf = textFrame.FirstPgf;
textLoc = new TextLoc();
textLoc.obj = pgf;
textLoc.offset = 0;
doc.AddText(textLoc, ‘Sample Text’);
Notice how theF_TextLocT FDK structure maps to the TextLoc object in scripts.
Lines 1, 2, 3, 4 can be combined and written as:
pgf = app.ActicveDoc.MainFlowInDoc.FirstTextFrameInFlow.FirstPgf;
Lines 6, 7, 8 can be combined and written by passing parameters in the constructor of the TextLoc object
as:
textLoc = new TextLoc(pgf, 0);
Scripts have advanced features such as notifications and commands.
Notifications
Notifications is the internal mechanism through which a script registered for a particular event is run
when the event is triggered.
As an example, consider the following script:
/*
Sample script to demonstrate how to use notification mechanism of
FrameMaker though ExtendScript
*/
/*
There are basically two parts to a notification script.
1. Registering for a desired notification. (This is done by calling
'Notification()' with desired notifications as argument.)
2. Implement a handler for these notifications in your script. ( Implement
'Notify()' in script)
*/
/*
Part 1. Registering for Notifications
Notification()' is a global function and is available readily in
scripting. (Similar to F_ApiNotification())
The Syntax for Notification() is: Notification(int, int,.....,int, bool);
it takes:
a.)list of notifications(FA_Note_PreOpenDoc, FA_Note_PostOpenDoc etc.)
and
b.) param bool: true = register for provided notification list, false =
unregister for provided notification list.
(This parameter is optional and by default 'true')
Note: for more details please see F_ApiNotification() in FDK reference
13
NOTIFICATIONS
CHAPTER 4 DIFFERENCES BETWEEN SCRIPTS AND FDK
guide.
*/
/*
Notification(FA_Note_PreOpenDoc,true);
This is same as Notification(FA_Note_PreSaveDoc)
or you can register for more than one notification at once
Notification(FA_Note_PostOpenDoc,FA_Note_PreSaveDoc);
Here we register for the notification: FA_Note_PostOpenDoc - this
notification is
triggered just after a document is opened.
Notification(FA_Note_PostOpenDoc,true);
*/
/*
Part 2: handler
This can be done by implementing function 'Notify()' that are called by
FrameMaker when any desired even occurs.(Similar to F_ApiNotify())
Syntax for this callback function is:
@params
note: notification id to identify the event.
object: current document or book object which generated the event.
sparam: The string, if any, associated with the notification
(For example, if the notification is for an Open or Save operation, sparm
specifies the pathname of the affected file. If the notification is for
text entry, sparm specifies the text the user typed.)
iparam: The Integer, if any, associated with the notification. Probably
the fcode or bit flags.
Notify(note, doc, sparam, iparam)
Note: for more details please see F_ApiNotify() in FDK reference guide.
*/
function Notify(note, object, sparam, iparam)
{
switch (note) {
case FA_Note_PostOpenDoc:
alert("Opened document " + sparam);
break;
}
The line of code:
Notification(FA_Note_PostOpenDoc,true);
registers this script for the FA_Note_PostOpenDoc notification. This notification is triggered just after
any document is opened in FrameMaker.
The lines of code:
function Notify(note, object, sparam, iparam)
{
switch (note) {
case FA_Note_PostOpenDoc:
14
MENUS AND COMMANDS
CHAPTER 4 DIFFERENCES BETWEEN SCRIPTS AND FDK
15
MENUS AND COMMANDS
CHAPTER 4 DIFFERENCES BETWEEN SCRIPTS AND FDK
F_ObjHandleT commandId)
//nMenu2.AddCommandToMenu(cmd3);
// must call if script has been run through ESTK, redundant otherwise.
UpdateMenus();
// Call back equivalent to F_ApiCommand(command)
function Command(cmd){
switch(cmd) {
case 1:
alert("Command1 executed");
break;
case 2:
alert("Command2 executed");
break;
}
}
Let us examine the script in detail:
1) The line: mMenu = app.GetNamedMenu("!MakerMainMenu") ; fetches the name of the
FrameMaker main menu and stores it in the variable mMenu.
2) The lines:
nMenu1 = mMenu.DefineAndAddMenu("Menu1", "Menu1");
nMenu2 = mMenu.DefineAndAddMenu("Menu2", "Menu2");
add two new menu entries Menu1 and Menu2, under the main menu. The name of the main menu
is already stored in step 1.
3) The commands:
nMenu1.DefineAndAddCommand(1,"cmd1","command1","");
nMenu2.DefineAndAddCommand(2,"cmd2","command2","");
add two new menu entries called Command 1 and Command 2 under the menu entries Menu1 and
Menu2, that were defined in step 2.
4) Finally, the block of code:
function Command(cmd) {
case 1: alert("Command 1 executed");
break;
case 2: alert("command 2 executed");
break;
}
assigns the relevant commands to the menu entries defined in step 3.
The number after the keyword case is the menu ID. Look at the command in step 3:
nMenu1.DefineAndAddCommand(1,"cmd1","command1","");
The first value within the parenthesis is the menuID. This value is passed to the case statement.
The system pops up the relevant alert when the corresponding menu entry is clicked.
16
AFRAME
CHAPTER 5 OBJECT REFERENCE
Object Reference
AFrame
17
AFRAME
CHAPTER 5 OBJECT REFERENCE
18
AFRAME
CHAPTER 5 OBJECT REFERENCE
19
AFRAME
CHAPTER 5 OBJECT REFERENCE
20
AFRAME
CHAPTER 5 OBJECT REFERENCE
21
AFRAME
CHAPTER 5 OBJECT REFERENCE
22
AFRAME
CHAPTER 5 OBJECT REFERENCE
23
ARC
CHAPTER 5 OBJECT REFERENCE
AFrame methods
Delete, GetProps, SetProps, ObjectValid.
Arc
24
ARC
CHAPTER 5 OBJECT REFERENCE
25
ARC
CHAPTER 5 OBJECT REFERENCE
26
ARC
CHAPTER 5 OBJECT REFERENCE
27
ARC
CHAPTER 5 OBJECT REFERENCE
Arc methods
Delete, GetProps, ObjectValid, SetProps.
28
ATTRCONDEXPR
CHAPTER 5 OBJECT REFERENCE
AttrCondExpr
AttrCondExpr methods
ApplyAttributeExpression, GetProps, ObjectValid, SetProps.
Attribute
Attribute methods
Attribute.
29
ATTRIBUTEDEF
CHAPTER 5 OBJECT REFERENCE
AttributeDef
30
ATTRIBUTEDEF
CHAPTER 5 OBJECT REFERENCE
31
ATTRIBUTEDEFS
CHAPTER 5 OBJECT REFERENCE
AttributeDef methods
AttributeDef.
AttributeDefs
An Array of AttributeDef objects with integer indexing and a length property.
AttributeDefs methods
concat, pop, push.
AttributeEx
Attributes
An Array of Attribute objects with integer indexing and a length property.
32
ATTRIBUTESEX
CHAPTER 5 OBJECT REFERENCE
Attributes methods
concat, pop, push.
AttributesEx
An Array of AttributeEx objects with integer indexing and a length property.
AttributesEx methods
concat, pop, push.
BodyPage
33
BODYPAGE
CHAPTER 5 OBJECT REFERENCE
34
BOOK
CHAPTER 5 OBJECT REFERENCE
BodyPage methods
ApplyPageLayout, Delete, GetProps, ObjectValid, SetProps.
Book
35
BOOK
CHAPTER 5 OBJECT REFERENCE
36
BOOK
CHAPTER 5 OBJECT REFERENCE
37
BOOK
CHAPTER 5 OBJECT REFERENCE
38
BOOK
CHAPTER 5 OBJECT REFERENCE
39
BOOK
CHAPTER 5 OBJECT REFERENCE
40
BOOK
CHAPTER 5 OBJECT REFERENCE
41
BOOK
CHAPTER 5 OBJECT REFERENCE
42
BOOK
CHAPTER 5 OBJECT REFERENCE
43
BOOK
CHAPTER 5 OBJECT REFERENCE
44
BOOK
CHAPTER 5 OBJECT REFERENCE
45
BOOK
CHAPTER 5 OBJECT REFERENCE
46
BOOK
CHAPTER 5 OBJECT REFERENCE
47
BOOK
CHAPTER 5 OBJECT REFERENCE
Book methods
Close, Compare, GetProps, GetUniqueObject, Import, NewBookComponentInHierarchy, NewBookCompo-
nentOfTypeInHierarchy, NewSeriesBookComponent, NewSeriesObject, ObjectValid, Save, SetProps,
SilentPrintDoc, SimpleGenerate, SimpleImportElementDefs, SimpleImportFormats, SimpleSave, Update-
Book.
48
BOOKCOMPONENT
CHAPTER 5 OBJECT REFERENCE
BookComponent
49
BOOKCOMPONENT
CHAPTER 5 OBJECT REFERENCE
50
BOOKCOMPONENT
CHAPTER 5 OBJECT REFERENCE
51
BOOKCOMPONENT
CHAPTER 5 OBJECT REFERENCE
52
BOOKCOMPONENT
CHAPTER 5 OBJECT REFERENCE
53
BOOKCOMPONENT
CHAPTER 5 OBJECT REFERENCE
54
BOOKCOMPONENT
CHAPTER 5 OBJECT REFERENCE
55
BOOKCOMPONENT
CHAPTER 5 OBJECT REFERENCE
56
BOOKCOMPONENT
CHAPTER 5 OBJECT REFERENCE
57
BOOKCOMPONENT
CHAPTER 5 OBJECT REFERENCE
58
BOOKCOMPONENT
CHAPTER 5 OBJECT REFERENCE
59
BOOKCOMPONENT
CHAPTER 5 OBJECT REFERENCE
60
BOOKCOMPONENT
CHAPTER 5 OBJECT REFERENCE
61
BOOKCOMPONENT
CHAPTER 5 OBJECT REFERENCE
62
BOOKCOMPONENT
CHAPTER 5 OBJECT REFERENCE
63
BOOKCOMPONENT
CHAPTER 5 OBJECT REFERENCE
64
BOOKCOMPONENT
CHAPTER 5 OBJECT REFERENCE
65
BOOKCOMPONENT
CHAPTER 5 OBJECT REFERENCE
BookComponent methods
Delete, GetProps, MoveComponent, ObjectValid, SetProps.
66
CELL
CHAPTER 5 OBJECT REFERENCE
Cell
67
CELL
CHAPTER 5 OBJECT REFERENCE
68
CELL
CHAPTER 5 OBJECT REFERENCE
69
CHARFMT
CHAPTER 5 OBJECT REFERENCE
Cell methods
GetProps, GetText, ObjectValid, SetProps, StraddleCells, UnStraddleCells.
CharFmt
70
CHARFMT
CHAPTER 5 OBJECT REFERENCE
71
CHARFMT
CHAPTER 5 OBJECT REFERENCE
73
CHARFMT
CHAPTER 5 OBJECT REFERENCE
74
CHARFMT
CHAPTER 5 OBJECT REFERENCE
CharFmt methods
Delete, GetProps, ObjectValid, SetProps.
75
CMSCHECKINPARAM
CHAPTER 5 OBJECT REFERENCE
CMSCheckinParam
CMSDeleteParam
76
CMSINFO
CHAPTER 5 OBJECT REFERENCE
CMSInfo
CMSMenuItem
77
CMSPROPERTY
CHAPTER 5 OBJECT REFERENCE
CMSProperty
CMSProperties
An Array of objects with integer indexing and a length property.
CMSRegistration
78
CMSRESULT
CHAPTER 5 OBJECT REFERENCE
CMSResult
CMSSession
Color
79
COLOR
CHAPTER 5 OBJECT REFERENCE
80
COLUMN
CHAPTER 5 OBJECT REFERENCE
Color methods
Delete, GetProps, ObjectValid, SetProps.
Column
81
COMBINEDFONT
CHAPTER 5 OBJECT REFERENCE
Column methods
Delete, GetProps, ObjectValid, SetProps.
CombinedFont
CombinedFont methods
CombinedFont.
82
COMBINEDFONTDEFN
CHAPTER 5 OBJECT REFERENCE
CombinedFontDefn
CombinedFontDefn methods
CombinedFamilyFonts, Delete, GetProps, ObjectValid, SetProps.
83
COMBINEDFONTS
CHAPTER 5 OBJECT REFERENCE
CombinedFonts
An Array of CombinedFont objects with integer indexing and a length property.
CombinedFonts methods
concat, pop, push.
Command
84
COMMAND
CHAPTER 5 OBJECT REFERENCE
85
COMMAND
CHAPTER 5 OBJECT REFERENCE
• Constants.FV_EN-
ABLE_IS_TABLE(14) - An entire
table is selected.
Constants.FV_ENABLE_IS_OBJ (15)
- An object is selected.
Constants.FV_ENABLE_IS_TEXT_-
FRAME (16) - A text frame is select-
ed.
Constants.FV_EN-
ABLE_IS_OR_IN_FRAME (17) - The
selected object is a graphic frame
or is in a graphic frame that is not
a page frame.
Constants.FV_ENABLE_IS_A-
FRAME (18) - The first selected ob-
ject is an anchored frame.
Constants.FV_ENABLE_IS_TEX-
T_INSET (19) - The first selected
object is a text inset.
Constants.FV_ENABLE_IS_GRAPH-
IC_INSET (20) - The first selected
object is a graphic inset.
Constants.FV_ENABLE_IN_FLOW
(21) - A text frame is selected, or
the insertion point or selection is in
a paragraph.
Constants.FV_ENABLE_COPY (22) -
Some text or an object is selected.
86
COMMAND
CHAPTER 5 OBJECT REFERENCE
• Constants.FV_ENABLE_COPY_-
FONT (23) - The insertion point or
selection is in the text of a para-
graph, a math object, a table, or a
text line.
Constants.FV_ENABLE_-
CAN_PASTE(24) - The Clipboard
contains an object or text that can
be pasted at the insertion point.
Constants.FV_EN-
ABLE_IS_VIEW_ONLY (25) - The
current document is locked.
Constants.FV_EN-
ABLE_NEEDS_DOCP_ONLY (26) - A
document is open.
Constants.FV_ENABLE_NEEDS_-
BOOKP_ONLY (27) - A book is
open.
Constants.FV_EN-
ABLE_NEEDS_DOCP_OR_BOOKP
(28) - A document or a book is
open.
ExpandOMaticParent Command Denotes the virtual parent object, if the
menu item is an expandomatic menu
item.
Fcode uint Specifies an f-code that FrameMaker
executes when the user chooses the
menu item or presses the keyboard
shortcut.
Fcodes UInts The list of f-codes that the FrameMaker
product executes when the user
chooses the menu item or presses the
keyboard shortcut.
Normally, the first f-code in the list is
the same as the f-code specified by the
Fcode property.
87
COMMAND
CHAPTER 5 OBJECT REFERENCE
88
COMMAND
CHAPTER 5 OBJECT REFERENCE
89
COMMAND
CHAPTER 5 OBJECT REFERENCE
90
COMMAND
CHAPTER 5 OBJECT REFERENCE
Command methods
Delete, Delete, GetProps, ObjectValid, SetProps.
91
COMPARERET
CHAPTER 5 OBJECT REFERENCE
CompareRet
CompareRet methods
CompareRet.
CondFmt
92
CONDFMT
CHAPTER 5 OBJECT REFERENCE
93
CONSTANTS
CHAPTER 5 OBJECT REFERENCE
CondFmt methods
Delete, GetProps, ObjectValid, SetProps.
Constants
NOTE: Adobe and Pantone have been working together to support your color needs. Pantone Matches are
no longer supported in Adobe. Pantone color libraries currently preloaded in FrameMaker and
FrameMaker Publishing Server will be phased out starting August 31, 2022 (with the exception of
PANTONE+ CMYK Coated, PANTONE+ CMYK Uncoated, PANTONE+ Metallic Coated).
Constants.FDK_LIBRARY_VERSION int
Value:0x11000000
Constants.FE_Success int
Value:0
Constants.FE_Transport int
Value:-1
Constants.FE_BadDocId int
Value:-2
Constants.FE_BadObjId int
Value:-3
Constants.FE_BadPropNum int
Value:-4
Constants.FE_BadPropType int
Value:-5
Constants.FE_ReadOnly int
Value:-6
Constants.FE_OutOfRange int
Value:-7
Constants.FE_DocModified int
Value:-8
94
CONSTANTS
CHAPTER 5 OBJECT REFERENCE
Constants.FE_GroupSelect int
Value:-9
Constants.FE_WithinFrame int
Value:-10
Constants.FE_NotGraphic int
Value:-11
Constants.FE_NotFrame int
Value:-12
Constants.FE_NotGroup int
Value:-13
Constants.FE_BadNewFrame int
Value:-14
Constants.FE_BadNewGroup int
Value:-15
Constants.FE_BadNewSibling int
Value:-16
Constants.FE_BadDelete int
Value:-17
Constants.FE_BadPageDelete int
Value:-18
Constants.FE_TypeUnNamed int
Value:-19
Constants.FE_NameNotFound int
Value:-20
Constants.FE_OffsetNotFound int
Value:-21
Constants.FE_SomeUnresolved int
Value:-22
Constants.FE_BadNew int
Value:-23
Constants.FE_NotBodyPage int
Value:-24
Constants.FE_NotPgf int
Value:-25
95
CONSTANTS
CHAPTER 5 OBJECT REFERENCE
Constants.FE_NotBookComponent int
Value:-26
Constants.FE_BadOperation int
Value:-27
Constants.FE_BadElementDefId int
Value:-28
Constants.FE_BadElementId int
Value:-29
Constants.FE_BadNotificationNum int
Value:-30
Constants.FE_BadContainer int
Value:-104
Constants.FE_BadTemplatePath int
Value:-105
Constants.FE_BadXmlApplication int
Value:-106
Constants.FE_DupName int
Value:-32
Constants.FE_BadName int
Value:-33
Constants.FE_CompareTypes int
Value:-34
Constants.FE_BadCompare int
Value:-35
Constants.FE_BadRange int
Value:-36
Constants.FE_PageFrame int
Value:-37
Constants.FE_CantSmooth int
Value:-38
Constants.FE_NotTextFrame int
Value:-39
Constants.FE_HiddenPage int
Value:-40
96
CONSTANTS
CHAPTER 5 OBJECT REFERENCE
Constants.FE_NotTextObject int
Value:-41
Constants.FE_SystemError int
Value:-42
Constants.FE_BadParameter int
Value:-43
Constants.FE_Canceled int
Value:-44
Constants.FE_FailedState int
Value:-45
Constants.FE_WantsCustom int
Value:-46
Constants.FE_WantsLandscape int
Value:-47
Constants.FE_WantsPortrait int
Value:-48
Constants.FE_ViewOnly int
Value:-49
Constants.FE_BadSaveFileName int
Value:-50
Constants.FE_GenRuleItemExpected int
Value:-51
Constants.FE_GenRuleMixedConnectors int
Value:-52
Constants.FE_GenRuleLeftBracketExpect int
ed Value:-53
Constants.FE_GenRuleRightBracketExpec int
ted Value:-54
Constants.FE_GenRuleAmbiguous int
Value:-55
Constants.FE_GenRuleSyntaxError int
Value:-56
Constants.FE_GenRuleConnectorExpecte int
d Value:-57
97
CONSTANTS
CHAPTER 5 OBJECT REFERENCE
Constants.FE_InvalidString int
Value:-58
Constants.FE_BadSelectionForOperation int
Value:-59
Constants.FE_WrongProduct int
Value:-60
Constants.FE_BookStructured int
Value:-61
Constants.FE_BadRefFlowId int
Value:-62
Constants.FE_FlowStructured int
Value:-63
Constants.FE_BadRefElementId int
Value:-64
Constants.FE_BadInsertPos int
Value:-65
Constants.FE_BadBookId int
Value:-66
Constants.FE_BookUnStructured int
Value:-67
Constants.FE_BadCompPath int
Value:-68
Constants.FE_BadElementSelection int
Value:-69
Constants.FE_FileClosedByClient int
Value:-70
Constants.FE_NotPgfOrFlow int
Value:-71
Constants.FE_NotMenu int
Value:-72
Constants.FE_NotCommand int
Value:-73
Constants.FE_NotApiCommand int
Value:-74
98
CONSTANTS
CHAPTER 5 OBJECT REFERENCE
Constants.FE_NotInMenu int
Value:-75
Constants.FE_BadShortcut int
Value:-76
Constants.FE_BadMenuBar int
Value:-77
Constants.FE_PropNotSet int
Value:-78
Constants.FE_InvAttributeDef int
Value:-79
Constants.FE_InvAttribute int
Value:-80
Constants.FE_CircularReference int
Value:-81
Constants.FE_NoSuchFlow int
Value:-82
Constants.FE_BadFileType int
Value:-83
Constants.FE_MissingFile int
Value:-84
Constants.FE_CantUpdateMacEdition int
Value:-85
Constants.FE_CanceledByClient int
Value:-86
Constants.FE_EmptyTextObject int
Value:-87
Constants.FE_Busy int
Value:-88
Constants.FE_FilterFailed int
Value:-89
Constants.FE_AsianSystemRequired int
Value:-90
Constants.FE_TintedColor int
Value:-91
99
CONSTANTS
CHAPTER 5 OBJECT REFERENCE
Constants.FE_NoColorFamily int
Value:-92
Constants.FE_StringTooLong int
Value:-93
Constants.FE_InternalErrorFailedToWrite int
Insets Value:-94
Constants.FE_NotFound int
Value:-95
Constants.FE_LanguageNotAvailable int
Value:-96
Constants.FE_BadBaseColor int
Value:-97
Constants.FE_BadFamilyName int
Value:-98
Constants.FE_BadInkName int
Value:-99
Constants.FE_ReservedColor int
Value:-100
Constants.FE_TableInLockedTi int
Value:-101
Constants.FE_XRefUnresolved int
Value:-102
Constants.FE_BadXRefSrcDocId int
Value:-103
Constants.FE_InvalidAttrExpr int
Value:-107
Constants.FE_DocAlreadyHasTrackedEdit int
s Value:-108
Constants.FE_BookComponentAlreadyH int
asTrackedEdits Value:-109
Constants.FE_AcceptRejectCalledOnWro int
ngPreviewState Value:-110
Constants.FE_FailedExportedFileInvalid int
Value:-111
100
CONSTANTS
CHAPTER 5 OBJECT REFERENCE
Constants.FE_BadKey int
Value:-177
Constants.FE_BadKeyField int
Value:-178
Constants.FE_BadValue int
Value:-179
Constants.FE_KeyCatalogNotLoaded int
Value:-180
Constants.FE_KeyCatalogIsStale int
Value:-181
Constants.FE_KeyDefinitionDoesNotExist int
Value:-182
Constants.FE_KeyDefinitionAlreadyExists int
Value:-183
Constants.FE_BadFilterType int
Value:-184
Constants.FE_KeyCatalogNotSpecified int
Value:-185
Constants.FE_NonDITADocument int
Value:-186
Constants.FE_UpdateDITAReferenceFaile int
dInvalidElementType Value:-187
Constants.FE_UpdateDITAReferenceFaile int
dCannotResolveReference Value:-188
Constants.FE_UpdateDITAReferenceFaile int
dCannotFindReferencedFile Value:-189
Constants.FE_UpdateDITAReferenceFaile int
dCannotOpenReferencedFile Value:-190
Constants.FE_UpdateDITAReferenceFaile int
dCannotConvertToFMObject Value:-191
Constants.FE_UpdateDITAReferenceFaile int
d Value:-192
Constants.FE_FDKUndoNotAllowed int
Value:-193
101
CONSTANTS
CHAPTER 5 OBJECT REFERENCE
Constants.FR_DialogStayUp int
Value:-10000
Constants.FR_ModalStayUp int
Value:-10000
Constants.FR_CancelOperation int
Value:-10001
Constants.FR_DisplayedTiDialog int
Value:-10002
Constants.FR_ECMImportSuccess int
Value:-10003
Constants.FR_SkipStep int
Value:-10004
Constants.FR_YesOperation int
Value:-10005
Constants.FR_NoOperation int
Value:-10006
Constants.FR_DisplayedXRefDialog int
Value:-10007
Constants.FR_ClosedXRefDialog int
Value:-10008
Constants.FR_DisplayedModelessDialogF int
orNonContainerElem Value:-10009
Constants.FR_CancelInsertElementOpera int
tion Value:-10010
Constants.FR_HideDialogOnClose int
Value:-10011
Constants.FR_DisplayedModalDialogFor int
NonContainerElem Value:-10012
Constants.FR_UpdateDITAReferenceSucc int
ess Value:-10013
Constants.FR_UpdateDITAReferenceFaile int
d Value:-10014
Constants.FR_UpdateDITAReferenceFaile int
dInvalidElementType Value:-10015
102
CONSTANTS
CHAPTER 5 OBJECT REFERENCE
Constants.FR_UpdateDITAReferenceFaile int
dCannotResolveReference Value:-10016
Constants.FR_UpdateDITAReferenceFaile int
dCannotFindReferencedFile Value:-10017
Constants.FR_UpdateDITAReferenceFaile int
dCannotOpenReferencedFile Value:-10018
Constants.FR_UpdateDITAReferenceFaile int
dCannotConvertToFMObject Value:-10019
Constants.FR_KeyCatalogLoaded int
Value:-10020
Constants.FR_CommandEnabled int
Value:-10021
Constants.FR_CommandDisabled int
Value:-10022
Constants.FV_ACCESSBAR_OPEN int
Value:1
Constants.FV_ACCESSBAR_CLOSE int
Value:2
Constants.FV_MATH int
Value:3
Constants.FV_FORMATBAR_OPEN int
Value:4
Constants.FV_FORMATBAR_CLOSE int
Value:5
Constants.FV_CHAR_CATALOG int
Value:6
Constants.FV_PGF_CATALOG int
Value:7
Constants.FV_ELEMENT_CATALOG int
Value:8
Constants.FV_GRAPHIC int
Value:9
Constants.FV_THESAURUS int
Value:10
103
CONSTANTS
CHAPTER 5 OBJECT REFERENCE
Constants.FV_TEMPLATE_BROWSER int
Value:11
Constants.FV_HIST int
Value:12
Constants.FV_TBL_CATALOG int
Value:13
Constants.FV_GRAPHICS_CATALOG int
Value:14
Constants.FV_HELP_INDEX int
Value:0
Constants.FV_HELP_KEYS int
Value:1
Constants.FV_HELP_SAMPLES int
Value:2
Constants.FV_HELP_OVERVIEW int
Value:3
Constants.FV_HELP_ONLINE_MANUALS int
Value:4
Constants.FV_HELP_CONTEXT int
Value:5
Constants.FV_HELP_INIT_CONTEXT int
Value:6
Constants.FV_HELP_HYPERTEXT int
Value:7
Constants.FV_HELP_WEBWORKS int
Value:8
Constants.FP_DockDialog int
Value:2344
Constants.FV_DIALOG_DOCK_NONE int
Value:0x00
Constants.FV_DIALOG_DOCK_LEFT int
Value:0x1
Constants.FV_DIALOG_DOCK_RIGHT int
Value:(0x1 << 1)
104
CONSTANTS
CHAPTER 5 OBJECT REFERENCE
Constants.FV_DIALOG_DOCK_TOP int
Value:(0x1 << 2)
Constants.FV_DIALOG_DOCK_BOTTOM int
Value:(0x1 << 3)
Constants.FV_DIALOG_DOCK_ALL int
Value:0xFF
Constants.FP_IsDialogDocked int
Value:2345
Constants.FP_IsDialogVisible int
Value:2346
Constants.FP_GroupDialog int
Value:2349
Constants.FV_DIALOG_GROUP_NONE int
Value:0x0
Constants.FV_DIALOG_GROUP_SPECIAL int
Value:0x1
Constants.FV_DIALOG_GROUP_CATALOG int
S Value:(0x1 << 1)
Constants.FV_DIALOG_GROUP_DESIGNE int
RS Value:(0x1 << 2)
Constants.FV_DIALOG_GROUP_ATTRIBU int
TES Value:(0x1 << 3)
Constants.FV_DIALOG_GROUP_PODS int
Value:(0x1 << 4)
Constants.FV_DIALOG_GROUP_PODSRIG int
HT Value:(0x1 << 5)
Constants.FV_DIALOG_GROUP_EDIT int
Value:(0x1 << 6)
Constants.FV_DIALOG_GROUP_ALLPANE int
LS Value:(0x1 << 7)
Constants.FV_DIALOG_GROUP_RMKITS int
Value:(0x1 << 8)
Constants.FV_DIALOG_GROUP_RIGHT_T int
OP Value:(0x1 << 9)
105
CONSTANTS
CHAPTER 5 OBJECT REFERENCE
Constants.FV_DIALOG_GROUP_RIGHT_B int
OTTOM Value:(0x1 << 10)
Constants.FV_DIALOG_GROUP_ALL int
Value:0xFF
Constants.FP_ResizeGripperBarVisibility int
Value:2395
Constants.FV_DIALOG_GRIPPERBAR_TR int
UE Value:0
Constants.FV_DIALOG_GRIPPERBAR_FAL int
SE Value:1
Constants.FP_ResizeGripperPos int
Value:2350
Constants.FV_DIALOG_RESIZEGRIPPERP int
OS_NONE Value:0
Constants.FV_DIALOG_RESIZEGRIPPERP int
OS_FRONT Value:1
Constants.FV_DIALOG_RESIZEGRIPPERP int
OS_BELOW Value:2
Constants.FP_MinSize int
Value:2351
Constants.FP_MaxSize int
Value:2352
Constants.FP_Focus int
Value:2358
Constants.FP_AlertClientUnique int
Value:2290
Constants.FP_AlertClientName int
Value:2291
Constants.FP_AlertString int
Value:2292
Constants.FP_AlertType int
Value:2293
Constants.FV_AlertOneButton int
Value:1
106
CONSTANTS
CHAPTER 5 OBJECT REFERENCE
Constants.FV_AlertTwoButton int
Value:2
Constants.FV_AlertThreeButton int
Value:3
Constants.FF_ALERT_OK_DEFAULT int
Value:0
Constants.FF_ALERT_CANCEL_DEFAULT int
Value:1
Constants.FF_ALERT_CONTINUE_NOTE int
Value:2
Constants.FF_ALERT_CONTINUE_WARN int
Value:3
Constants.FF_ALERT_YES_DEFAULT int
Value:4
Constants.FF_ALERT_NO_DEFAULT int
Value:5
Constants.FF_ALERT_YES_NO_CANCEL int
Value:6
Constants.FF_XRUI_INTERNAL int
Value:0x01
Constants.FF_XRUI_OPEN_DOCS int
Value:0x02
Constants.FF_XRUI_CLOSED_DOCS int
Value:0x04
Constants.FF_XRUI_FORCE_UPDATE int
Value:0x08
Constants.FF_XRUI_EVERYTHING int
Value:(0x01|0x02|0x04)
Constants.FF_Custom_SingleSided int
Value:0
Constants.FF_Custom_FirstPageRight int
Value:1
Constants.FF_Custom_FirstPageLeft int
Value:2
107
CONSTANTS
CHAPTER 5 OBJECT REFERENCE
Constants.FF_CLOSE_MODIFIED int
Value:1
Constants.FF_CMP_SUMMARY_ONLY int
Value:0x01
Constants.FF_CMP_CHANGE_BARS int
Value:0x02
Constants.FF_CMP_HYPERLINKS int
Value:0x04
Constants.FF_CMP_SUMKIT int
Value:0x08
Constants.FF_CMP_COMPKIT int
Value:0x10
Constants.FF_CMP_ATTRIBUTES int
Value:0x20
Constants.FF_IMAGE_BACKGROUND int
Value:0x0001
Constants.FF_IMAGE_MASTER int
Value:0x0002
Constants.FF_IMAGE_CLIP int
Value:0x0004
Constants.FF_IMAGE_NOTRIM int
Value:0x0008
Constants.FF_IMAGE_PAGEFRAME int
Value:0x000F
Constants.FV_INTERACT_ROTATE int
Value:1
Constants.FV_INTERACT_ROTATE_CONST int
RAIN Value:2
Constants.FF_ATTACH_BORDER_STATUS int
Value:0x0001
Constants.FF_ATTACH_BORDER_PAGENU int
M Value:0x0002
Constants.FF_ATTACH_BORDER_ZOOM int
Value:0x0004
108
CONSTANTS
CHAPTER 5 OBJECT REFERENCE
Constants.FF_ATTACH_BORDER_PAGEUP int
DOWN Value:0x0008
Constants.FF_ATTACH_BORDER_RIGHTIC int
ONS Value:0x0010
Constants.FF_ATTACH_ALL int
Value:(0x0001|0x0002|0x0004|0x0008|0x0010)
Constants.FF_UFF_PGF int
Value:0x0001
Constants.FF_UFF_FONT int
Value:0x0002
Constants.FF_UFF_PAGE int
Value:0x0004
Constants.FF_UFF_TABLE int
Value:0x0008
Constants.FF_UFF_COND int
Value:0x0010
Constants.FF_UFF_REFPAGE int
Value:0x0020
Constants.FF_UFF_VAR int
Value:0x0040
Constants.FF_UFF_XREF int
Value:0x0080
Constants.FF_UFF_COLOR int
Value:0x0100
Constants.FF_UFF_MATH int
Value:0x0200
Constants.FF_UFF_DOCUMENT_PROPS int
Value:0x0400
Constants.FF_UFF_COMBINED_FONTS int
Value:0x0800
Constants.FF_UFF_FBA int
Value:0x1000
Constants.FF_UFF_REMOVE_PAGE_BREA int
KS Value:0x4000
109
CONSTANTS
CHAPTER 5 OBJECT REFERENCE
Constants.FF_UFF_REMOVE_EXCEPTION int
S Value:0x8000
Constants.FF_UFF_ALL int
Value:0xFFFF
Constants.FF_INTERACTIVE int
Value:0x0001
Constants.FF_CUT_TBL_CELLS int
Value:0x0002
Constants.FF_DONT_DELETE_HIDDEN_T int
EXT Value:0x0004
Constants.FF_INSERT_BELOW_RIGHT int
Value:0x0008
Constants.FF_VISIBLE_ONLY int
Value:0x0010
Constants.FF_REPLACE_CELLS int
Value:0x0020
Constants.FF_DONT_APPLY_ALL_ROWS int
Value:0x0040
Constants.FF_STRIP_HYPERTEXT int
Value:0x0080
Constants.FF_SELECT_WHOLE_TABLE int
Value:0x80000000
Constants.FF_CLEAR_SEL int
Value:0
Constants.FF_TEXT_SEL int
Value:1
Constants.FF_TEXT_EXT int
Value:2
Constants.FF_TEXT_Q_COPY int
Value:3
Constants.FF_CONTEXT_DRAGTXT int
Value:4
Constants.FF_PASTE_SEL_TEXT int
Value:11
110
CONSTANTS
CHAPTER 5 OBJECT REFERENCE
Constants.FF_PASTE_CLIP_TEXT int
Value:12
Constants.FF_COPY_TO_CLIP int
Value:13
Constants.FF_CELL_SEL int
Value:21
Constants.FF_CELL_EXT int
Value:22
Constants.FF_TABLE_SELALL int
Value:23
Constants.FF_CELL_RES int
Value:24
Constants.FF_CELLS_RES int
Value:25
Constants.FF_VIEWER_MENU int
Value:32
Constants.FF_CONTEXT_MENU int
Value:33
Constants.FF_STRUCTURE_MENU int
Value:34
Constants.FF_HYPERTEXT int
Value:41
Constants.FF_ELEMENT_CONTEXT int
Value:47
Constants.FF_ELEMENT_EXT_CONTEXT int
Value:48
Constants.FF_BUBBLE_CONTEXT int
Value:49
Constants.FF_BUBBLE_EXT_CONTEXT int
Value:50
Constants.FF_ELEMENT_SEL int
Value:51
Constants.FF_ELEMENT_EXT int
Value:52
111
CONSTANTS
CHAPTER 5 OBJECT REFERENCE
Constants.FF_BUBBLE_SEL int
Value:53
Constants.FF_BUBBLE_EXT int
Value:54
Constants.FF_BUBBLE_COPY int
Value:55
Constants.FF_COLLAPSE_ELEM int
Value:56
Constants.FF_COLLAPSE_ALL int
Value:57
Constants.FF_OPEN_BOOK_COMP int
Value:58
Constants.FF_PASTE_CLIP_OBJ int
Value:61
Constants.FF_OBJ_SEL int
Value:62
Constants.FF_OBJ_EXT int
Value:63
Constants.FF_OBJ_EXT_BOR int
Value:64
Constants.FF_OBJ_Q_COPY int
Value:65
Constants.FF_OBJ_ROTATE int
Value:66
Constants.FF_OBJ_CROTATE int
Value:67
Constants.FF_BOR_SEL int
Value:71
Constants.FF_BOR_EXT int
Value:72
Constants.FF_CONTEXT_DRAG int
Value:73
Constants.FF_CONTEXT_DRAG_EXT int
Value:74
112
CONSTANTS
CHAPTER 5 OBJECT REFERENCE
Constants.FF_RES_MOVE int
Value:81
Constants.FF_RES_MOVE1 int
Value:82
Constants.FF_RES_VERTEX int
Value:83
Constants.FF_RES_ADD int
Value:84
Constants.FF_RES_DEL int
Value:85
Constants.FF_SHIFT_KEY int
Value:0x0001
Constants.FF_CONTROL_KEY int
Value:0x0002
Constants.FF_ALT_KEY int
Value:0x0004
Constants.FF_CMD_KEY int
Value:0x0010
Constants.FF_ATTRDISP int
Value:86
Constants.FF_ATTRDISP_ALL int
Value:87
Constants.FF_EDIT_ATTRIBUTE int
Value:88
Constants.FF_ATTR_SEL int
Value:89
Constants.FS_ShowBrowser int
Value:1
Constants.FS_AlertUserAboutFailure int
Value:2
Constants.FS_DontNotifyAPIClients int
Value:3
Constants.FS_UpdateBrowserDirectory int
Value:4
113
CONSTANTS
CHAPTER 5 OBJECT REFERENCE
Constants.FS_MakeVisible int
Value:5
Constants.FS_MakeIconic int
Value:6
Constants.FS_DisallowMIF int
Value:7
Constants.FS_DisallowDoc int
Value:8
Constants.FS_DisallowBookMIF int
Value:9
Constants.FS_DisallowBookDoc int
Value:10
Constants.FS_DisallowFilterTypes int
Value:11
Constants.FS_DisallowPlainText int
Value:12
Constants.FS_ForceOpenAsText int
Value:13
Constants.FS_UseRecoverFile int
Value:14
Constants.FS_UseAutoSaveFile int
Value:15
Constants.FV_DoCancel int
Value:0
Constants.FV_DoOK int
Value:1
Constants.FV_DoYes int
Value:2
Constants.FV_DoNo int
Value:3
Constants.FV_DoShowDialog int
Value:4
Constants.FV_OpenViewOnly int
Value:5
114
CONSTANTS
CHAPTER 5 OBJECT REFERENCE
Constants.FS_FileIsText int
Value:16
Constants.FV_TextFile_EOLisEOP int
Value:12
Constants.FV_TextFile_EOLisNotEOP int
Value:13
Constants.FS_FileIsInUse int
Value:17
Constants.FV_ResetLockAndContinue int
Value:7
Constants.FV_OpenEditableCopy int
Value:8
Constants.FS_BookIsInUse int
Value:18
Constants.FS_LockCantBeReset int
Value:19
Constants.FS_FileIsOldVersion int
Value:20
Constants.FS_FileIsStructured int
Value:21
Constants.FV_StripStructureAndOpen int
Value:10
Constants.FS_FontNotFoundInDoc int
Value:22
Constants.FS_FontChangedMetric int
Value:23
Constants.FS_RefFileNotFound int
Value:24
Constants.FV_AllowAllRefFilesUnFindabl int
e Value:11
Constants.FS_LanguageNotAvailable int
Value:25
Constants.FS_OpenInNewWindow int
Value:26
115
CONSTANTS
CHAPTER 5 OBJECT REFERENCE
Constants.FS_OpenId int
Value:27
Constants.FS_FontNotFoundInCatalog int
Value:28
Constants.FS_NewDoc int
Value:29
Constants.FS_OpenDocViewOnly int
Value:30
Constants.FS_NameStripe int
Value:31
Constants.FS_BeefyDoc int
Value:32
Constants.FS_DisallowSgml int
Value:33
Constants.FS_FileTypeHint int
Value:34
Constants.FS_UpdateTextReferences int
Value:35
Constants.FS_UpdateXRefs int
Value:36
Constants.FS_OpenDocFluid int
Value:37
Constants.FV_DoUserPreference int
Value:12
Constants.FS_StructuredOpenApplicatio int
n Value:38
Constants.FS_SgmlBookFileName int
Value:39
Constants.FS_OpenFileNotWritable int
Value:40
Constants.FS_OpenAsType int
Value:41
Constants.FV_AUTORECOGNIZE int
Value:0x00
116
CONSTANTS
CHAPTER 5 OBJECT REFERENCE
Constants.FV_TYPE_BINARY int
Value:0x01
Constants.FV_TYPE_MIF int
Value:0x02
Constants.FV_TYPE_TEXT int
Value:0x03
Constants.FV_TYPE_SGML int
Value:0x04
Constants.FV_TYPE_XML int
Value:0x05
Constants.FV_TYPE_FILTER int
Value:0xFF
Constants.FS_OpenBookViewOnly int
Value:42
Constants.FS_DisallowXml int
Value:43
Constants.FS_NoStructuredErrorLog int
Value:44
Constants.FS_VerifyInsets int
Value:45
Constants.FS_IsErrorDoc int
Value:46
Constants.FS_TemplateShouldInsertRoot int
Value:47
Constants.FS_CMSId int
Value:48
Constants.FS_CMSSessionId int
Value:49
Constants.FS_NumOpenParams int
Value:49
Constants.FS_OpenedFileName int
Value:1
Constants.FS_OpenNativeError int
Value:2
117
CONSTANTS
CHAPTER 5 OBJECT REFERENCE
Constants.FS_OpenStatus int
Value:3
Constants.FS_NumOpenReturnParams int
Value:3
Constants.FV_NumOpenStatusFields int
Value:5
Constants.FV_LockWasReset int
Value:0
Constants.FV_LockNotReset int
Value:1
Constants.FV_LockCouldntBeReset int
Value:2
Constants.FV_FileWasInUse int
Value:3
Constants.FV_FileIsViewOnly int
Value:4
Constants.FV_LockWasInvalid int
Value:5
Constants.FV_FileIsNotWritable int
Value:6
Constants.FV_FileModDateChanged int
Value:7
Constants.FV_FileHasNewName int
Value:32
Constants.FV_RecoverFileUsed int
Value:33
Constants.FV_AutoSaveFileUsed int
Value:34
Constants.FV_FileWasFiltered int
Value:35
Constants.FV_FontsWereMapped int
Value:36
Constants.FV_FontMetricsChanged int
Value:37
118
CONSTANTS
CHAPTER 5 OBJECT REFERENCE
Constants.FV_FontsMappedInCatalog int
Value:38
Constants.FV_LanguagesWerentFound int
Value:39
Constants.FV_BeefyDoc int
Value:40
Constants.FV_FileIsOldVersion int
Value:41
Constants.FV_FileStructureStripped int
Value:42
Constants.FV_FileIsText int
Value:43
Constants.FV_OpenedViewOnly int
Value:44
Constants.FV_EditableCopyOpened int
Value:45
Constants.FV_BadFileRefsWereMapped int
Value:46
Constants.FV_ReferencedFilesWerentFo int
und Value:47
Constants.FV_FileAlreadyOpen int
Value:48
Constants.FV_UnresolvedXRefs int
Value:49
Constants.FV_UnresolvedTextInsets int
Value:50
Constants.FV_OpenedFluid int
Value:51
Constants.FV_FontsWithUnavailableEnc int
odingsUsed Value:53
Constants.FV_FileHadStructure int
Value:64
Constants.FV_FileAlreadyOpenThisSessio int
n Value:65
119
CONSTANTS
CHAPTER 5 OBJECT REFERENCE
Constants.FV_BadFileType int
Value:66
Constants.FV_BadFileName int
Value:67
Constants.FV_CantNewBooks int
Value:68
Constants.FV_CantOpenBooksViewOnly int
Value:69
Constants.FV_BadScriptValue int
Value:70
Constants.FV_MissingScript int
Value:71
Constants.FV_CantForceOpenAsText int
Value:72
Constants.FV_DisallowedType int
Value:73
Constants.FV_DocDamagedByTextFilter int
Value:74
Constants.FV_DocHeadersDamaged int
Value:75
Constants.FV_DocWrongSize int
Value:76
Constants.FV_ChecksumDamage int
Value:77
Constants.FV_CantOpenBooksFluid int
Value:78
Constants.FV_CancelUseRecoverFile int
Value:96
Constants.FV_CancelUseAutoSaveFile int
Value:97
Constants.FV_CancelFileIsText int
Value:98
Constants.FV_CancelFileIsInUse int
Value:99
120
CONSTANTS
CHAPTER 5 OBJECT REFERENCE
Constants.FV_CancelFileHasStructure int
Value:100
Constants.FV_CancelReferencedFilesNot int
Found Value:101
Constants.FV_CancelLanguagesNotFoun int
d Value:102
Constants.FV_CancelFontsMapped int
Value:103
Constants.FV_CancelFontMetricsChange int
d Value:104
Constants.FV_CancelFontsMappedInCat int
alog Value:105
Constants.FV_CancelFileIsDoc int
Value:106
Constants.FV_CancelFileIsMIF int
Value:107
Constants.FV_CancelBook int
Value:108
Constants.FV_CancelBookMIF int
Value:109
Constants.FV_CancelFileIsFilterable int
Value:110
Constants.FV_CancelFileIsOldVersion int
Value:111
Constants.FV_UserCanceled int
Value:112
Constants.FV_CancelFileBrowser int
Value:113
Constants.FV_CancelBeefyDoc int
Value:114
Constants.FV_CancelFileIsSgml int
Value:115
Constants.FV_CancelFontsWithUnavaila int
bleEncodings Value:116
121
CONSTANTS
CHAPTER 5 OBJECT REFERENCE
Constants.FV_CancelOpenFileNotWritabl int
e Value:117
Constants.FV_CancelTempDiskFull int
Value:118
Constants.FV_CancelFileIsXml int
Value:119
Constants.FV_TooManyWindows int
Value:128
Constants.FV_BadTemplate int
Value:129
Constants.FV_FileNotReadable int
Value:130
Constants.FS_FileType int
Value:1
Constants.FV_SaveFmtBinary int
Value:0
Constants.FV_SaveFmtInterchange int
Value:1
Constants.FV_SaveFmtStationery int
Value:3
Constants.FV_SaveFmtViewOnly int
Value:4
Constants.FV_SaveFmtText int
Value:6
Constants.FV_SaveFmtSgml int
Value:7
Constants.FV_SaveFmtFilter int
Value:8
Constants.FV_SaveFmtPdf int
Value:9
Constants.FV_SaveFmtXml int
Value:10
Constants.FV_SaveFmtBinary60 int
Value:11
122
CONSTANTS
CHAPTER 5 OBJECT REFERENCE
Constants.FV_SaveFmtBinary70 int
Value:12
Constants.FV_SaveFmtBinary80 int
Value:13
Constants.FV_SaveFmtInterchange70 int
Value:14
Constants.FV_SaveFmtInterchange80 int
Value:15
Constants.FV_SaveFmtBinary90 int
Value:16
Constants.FV_SaveFmtInterchange90 int
Value:17
Constants.FV_SaveFmtCompositeDoc int
Value:18
Constants.FV_SaveFmtBookWithXml int
Value:19
Constants.FV_SaveFmtBookWithFm int
Value:20
Constants.FV_SaveFmtBinary100 int
Value:21
Constants.FV_SaveFmtInterchange100 int
Value:22
Constants.FV_SaveFmtBinary110 int
Value:23
Constants.FV_SaveFmtInterchange110 int
Value:24
Constants.FS_SaveMode int
Value:4
Constants.FV_ModeSave int
Value:0
Constants.FV_ModeSaveAs int
Value:1
Constants.FS_SaveAsModeName int
Value:5
123
CONSTANTS
CHAPTER 5 OBJECT REFERENCE
Constants.FV_SaveAsNameAskUser int
Value:0
Constants.FV_SaveAsUseFileName int
Value:1
Constants.FV_SaveAsNameProvided int
Value:2
Constants.FS_AutoBackupOnSave int
Value:6
Constants.FV_SaveYesAutoBackup int
Value:0
Constants.FV_SaveNoAutoBackup int
Value:1
Constants.FV_SaveUserPrefAutoBackup int
Value:2
Constants.FS_MakePageCount int
Value:7
Constants.FV_UseCurrentSetting int
Value:0
Constants.FV_DontChangePageCount int
Value:1
Constants.FV_MakePageCountEven int
Value:2
Constants.FV_MakePageCountOdd int
Value:3
Constants.FV_DeleteEmptyPages int
Value:4
Constants.FS_ShowSaveTextDialog int
Value:8
Constants.FS_SaveTextTblSetting int
Value:9
Constants.FV_SaveTblUserPref int
Value:0
Constants.FV_SaveTblRowsAsPgfs int
Value:1
124
CONSTANTS
CHAPTER 5 OBJECT REFERENCE
Constants.FV_SaveTblColsAsPgfs int
Value:2
Constants.FV_SaveSkipTbls int
Value:3
Constants.FS_SaveTextExtraBlankLineAtE int
OP Value:10
Constants.FS_UseDefaultUNIXpermission int
s Value:11
Constants.FS_RetainNameStripe int
Value:12
Constants.FS_UNIXpermissions int
Value:13
Constants.FS_UpdateFRVList int
Value:14
Constants.FS_SaveFileTypeHint int
Value:16
Constants.FS_StructuredSaveApplication int
Value:18
Constants.FS_SaveFileNotWritable int
Value:20
Constants.FS_ModDateChanged int
Value:21
Constants.FS_DitavalFile int
Value:22
Constants.FS_DitavalCondTag int
Value:23
Constants.FS_DitaGenerateFlatBook int
Value:25
Constants.FS_DitaGenerateComponents int
AtOneLoc Value:26
Constants.FS_DitaPostProcessingOnBook int
Value:27
Constants.FS_DitaSavePdfViaBook int
Value:28
125
CONSTANTS
CHAPTER 5 OBJECT REFERENCE
Constants.FS_HasUnsupportedHotspotS int
hapes Value:29
Constants.FS_NumSaveParams int
Value:29
Constants.FS_SavedFileName int
Value:1
Constants.FS_SaveNativeError int
Value:2
Constants.FS_SaveStatus int
Value:3
Constants.FS_NumSaveReturnParams int
Value:3
Constants.FV_NumSaveStatusFields int
Value:2
Constants.FV_ProductIsViewer int
Value:32
Constants.FV_FileNotWritable int
Value:33
Constants.FV_BadSaveFileName int
Value:34
Constants.FV_BadFileId int
Value:35
Constants.FV_BadSaveScriptValue int
Value:36
Constants.FV_NonPortableSaveName int
Value:37
Constants.FV_NonPortableFileRefs int
Value:38
Constants.FV_ProductIsMaker int
Value:39
Constants.FV_BadSaveObjectId int
Value:40
Constants.FV_Unstructured int
Value:41
126
CONSTANTS
CHAPTER 5 OBJECT REFERENCE
Constants.FV_InvalidSaveFilter int
Value:42
Constants.FV_UserCanceledSave int
Value:48
Constants.FV_FileWasExported int
Value:49
Constants.FV_CancelSaveFileIsInUse int
Value:50
Constants.FV_CancelSaveFileNotWritabl int
e Value:51
Constants.FV_CancelSaveModDateChan int
ged Value:52
Constants.FV_CancelSaveExportedFileInv int
alid Value:53
Constants.FS_HowToImport int
Value:4
Constants.FV_DoByRef int
Value:5
Constants.FV_DoByCopy int
Value:6
Constants.FV_DoUserChoice int
Value:7
Constants.FS_ManualUpdate int
Value:5
Constants.FS_TextInsetName int
Value:6
Constants.FS_DisallowGraphicTypes int
Value:9
Constants.FS_DisallowMacEditions int
Value:10
Constants.FS_FileIsGraphic int
Value:13
Constants.FS_FitGraphicInSelectedRect int
Value:14
127
CONSTANTS
CHAPTER 5 OBJECT REFERENCE
Constants.FS_GraphicDpi int
Value:15
Constants.FV_DoImportAsTable int
Value:8
Constants.FS_ForceImportAsText int
Value:17
Constants.FS_FileIsMakerDoc int
Value:18
Constants.FS_UseMainFlow int
Value:19
Constants.FS_ImportFlowTag int
Value:20
Constants.FS_ImportFlowPageSpace int
Value:21
Constants.FV_ReferencePage int
Value:9
Constants.FV_BodyPage int
Value:10
Constants.FS_FormatImportedText int
Value:22
Constants.FV_SourceDoc int
Value:0
Constants.FV_EnclosingDoc int
Value:1
Constants.FV_PlainText int
Value:2
Constants.FS_RemoveManualPageBreak int
s Value:23
Constants.FS_RemoveOverrides int
Value:24
Constants.FS_ImportTblTag int
Value:25
Constants.FS_TblNumHeadingRows int
Value:26
128
CONSTANTS
CHAPTER 5 OBJECT REFERENCE
Constants.FS_LeaveHeadingRowsEmpty int
Value:27
Constants.FS_TreatParaAsRow int
Value:28
Constants.FS_CellSeparator int
Value:29
Constants.FS_NumCellSeparators int
Value:30
Constants.FS_NumColumns int
Value:31
Constants.FS_FileIsSgmlDoc int
Value:32
Constants.FS_StructuredImportApplicati int
on Value:35
Constants.FS_ImportAsType int
Value:36
Constants.FS_FileIsXmlDoc int
Value:37
Constants.FS_RasterDpi int
Value:38
Constants.FS_RasterImageWidth int
Value:39
Constants.FS_RasterImageHeight int
Value:40
Constants.FS_ShowRasterDpiDialog int
Value:41
Constants.FS_ClientUpdateSilent int
Value:47
Constants.FS_NumImportParams int
Value:47
Constants.FS_InsetData int
Value:50
Constants.FS_UseHTTP int
Value:51
129
CONSTANTS
CHAPTER 5 OBJECT REFERENCE
Constants.FS_InsetElementDef int
Value:52
Constants.FS_PDFPageNum int
Value:45
Constants.FS_ImportedFileName int
Value:1
Constants.FS_ImportNativeError int
Value:2
Constants.FS_ImportStatus int
Value:3
Constants.FS_NumImportReturnParams int
Value:3
Constants.FV_NumImportStatusFields int
Value:2
Constants.FV_ImportedByCopy int
Value:0
Constants.FV_ImportedText int
Value:1
Constants.FV_ImportedTextTable int
Value:2
Constants.FV_ImportedMIF int
Value:3
Constants.FV_ImportedMakerDoc int
Value:4
Constants.FV_ImportedFilteredFile int
Value:5
Constants.FV_ImportedGraphicFile int
Value:6
Constants.FV_ImportedMacEdition int
Value:7
Constants.FV_ImportedSgmlDoc int
Value:8
Constants.FV_ImportedXmlDoc int
Value:9
130
CONSTANTS
CHAPTER 5 OBJECT REFERENCE
Constants.FV_BadImportFileName int
Value:16
Constants.FV_BadImportFileType int
Value:17
Constants.FV_BadImportScriptValue int
Value:18
Constants.FV_MissingImportScript int
Value:19
Constants.FV_CantForceImportAsText int
Value:20
Constants.FV_DisallowedImportType int
Value:21
Constants.FV_NoMainFlow int
Value:22
Constants.FV_NoFlowWithSpecifiedNam int
e Value:23
Constants.FV_InsertionPointNotInText int
Value:24
Constants.FV_InsertionPointInTableCell int
Value:25
Constants.FV_InsertionPointInFootnote int
Value:26
Constants.FV_InsufficientMemory int
Value:27
Constants.FV_BadEnclosingDocId int
Value:28
Constants.FV_BadTextFileTypeHint int
Value:29
Constants.FV_FlowUnstructured int
Value:30
Constants.FV_CancelFileText int
Value:32
Constants.FV_CancelFileDoc int
Value:33
131
CONSTANTS
CHAPTER 5 OBJECT REFERENCE
Constants.FV_CancelFileMIF int
Value:34
Constants.FV_CancelFileFilterable int
Value:35
Constants.FV_CancelFileGraphic int
Value:36
Constants.FV_UserCanceledImport int
Value:37
Constants.FV_CancelImportBrowser int
Value:38
Constants.FV_CancelFileIsMacEdition int
Value:39
Constants.FV_CancelFileSgml int
Value:40
Constants.FV_CancelFileXml int
Value:41
Constants.FV_ImportFileNotReadable int
Value:48
Constants.FS_Export int
Value:4
Constants.FV_ExportDocument int
Value:0
Constants.FV_ExportObject int
Value:1
Constants.FS_ExportType int
Value:5
Constants.FS_ExportTextRange int
Value:6
Constants.FS_ExportObjectId int
Value:7
Constants.FS_ExportObjectNeedsDpi int
Value:12
Constants.FS_ExportFileTypeHint int
Value:14
132
CONSTANTS
CHAPTER 5 OBJECT REFERENCE
Constants.FS_StructuredExportApplicati int
on Value:16
Constants.FS_ImportExportVersion int
Value:17
Constants.FS_NumExportParams int
Value:17
Constants.FS_ExportFileName int
Value:1
Constants.FS_ExportNativeError int
Value:2
Constants.FS_ExportStatus int
Value:3
Constants.FV_NumExportStatusFields int
Value:2
Constants.FS_NumExportReturnParams int
Value:3
Constants.FV_ExportFileHasNewName int
Value:0
Constants.FV_ExportProductIsViewer int
Value:1
Constants.FV_ExportFileNotWritable int
Value:2
Constants.FV_InsufficientMem int
Value:3
Constants.FV_BadExportFileName int
Value:16
Constants.FV_MissingExportScript int
Value:17
Constants.FV_BadExportObjectId int
Value:18
Constants.FV_InvalidTextRange int
Value:19
Constants.FV_BadExportDocId int
Value:20
133
CONSTANTS
CHAPTER 5 OBJECT REFERENCE
Constants.FV_BadExportScriptValue int
Value:21
Constants.FV_FilterFailed int
Value:22
Constants.FV_InvalidExportFilter int
Value:23
Constants.FV_UserCanceledExport int
Value:32
Constants.FV_CanceledExportObjectNee int
dsDpi Value:33
Constants.FV_ApiClientCanceledExport int
Value:34
Constants.FS_AllowNonFMFiles int
Value:1
Constants.FS_AllowViewOnlyFiles int
Value:3
Constants.FS_ShowBookErrorLog int
Value:4
Constants.FS_AllowInconsistentNumPro int
ps Value:6
Constants.FS_UpdateBookGeneratedFile int
s Value:7
Constants.FS_UpdateBookNumbering int
Value:8
Constants.FS_UpdateBookOleLinks int
Value:9
Constants.FS_UpdateBookTextReference int
s Value:10
Constants.FS_UpdateBookXRefs int
Value:11
Constants.FS_UpdateBookMasterPages int
Value:12
Constants.FS_NumUpdateBookParams int
Value:12
134
CONSTANTS
CHAPTER 5 OBJECT REFERENCE
Constants.FS_UpdateBookStatus int
Value:1
Constants.FS_NumUpdateBookReturnPa int
rams Value:1
Constants.FV_NumUpdateBookStatusFie int
lds Value:4
Constants.FV_BookNotSelfConsistent int
Value:0
Constants.FV_DuplicateFileInBook int
Value:1
Constants.FV_NoNonGeneratedFilesInBo int
ok Value:2
Constants.FV_CancelNonFMFileInBook int
Value:32
Constants.FV_CancelViewOnlyFileInBook int
Value:33
Constants.FV_CancelInconsistentNumPr int
opsInFileInBook Value:34
Constants.FV_UserCanceledUpdateBook int
Value:35
Constants.FV_BadUpdateBookFileId int
Value:64
Constants.FV_BadUpdateBookScriptValu int
e Value:65
Constants.FV_FileInBookNotOpened int
Value:96
Constants.FV_FileInBookNotSaved int
Value:97
Constants.FV_TooManyWindowsUpdate int
Book Value:98
Constants.FV_Body int
Value:1237
Constants.FV_Heading int
Value:1238
135
CONSTANTS
CHAPTER 5 OBJECT REFERENCE
Constants.FV_Footing int
Value:1239
Constants.FV_Above int
Value:1240
Constants.FV_Below int
Value:1241
Constants.FV_Left int
Value:1242
Constants.FV_Right int
Value:1243
Constants.FV_ChooseSelect int
Value:0x00000000
Constants.FV_ChooseOpen int
Value:0x00000001
Constants.FV_ChooseSave int
Value:0x00000002
Constants.FV_ChooseOpenDir int
Value:0x00000004
Constants.FV_ChooseMultiSelect int
Value:0x00000008
Constants.FV_ChooseMultiOpen int
Value:0x00000010
Constants.FV_BrowseLocalOnly int
Value:0x00010000
Constants.FV_BrowseCmsOnly int
Value:0x00020000
Constants.FV_BrowseLocalWithWebdav int
Only Value:0x00040000
Constants.FA_Init_First int
Value:1
Constants.FA_Init_Subsequent int
Value:2
Constants.FA_Init_TakeControl int
Value:3
136
CONSTANTS
CHAPTER 5 OBJECT REFERENCE
Constants.FA_Init_DocReport int
Value:4
Constants.FA_Note_PreOpenDoc int
Value:1
Constants.FA_Note_PostOpenDoc int
Value:2
Constants.FA_Note_PreOpenMIF int
Value:3
Constants.FA_Note_PostOpenMIF int
Value:4
Constants.FA_Note_PreSaveDoc int
Value:5
Constants.FA_Note_PostSaveDoc int
Value:6
Constants.FA_Note_PreSaveMIF int
Value:7
Constants.FA_Note_PostSaveMIF int
Value:8
Constants.FA_Note_PreFileType int
Value:9
Constants.FA_Note_PostFileType int
Value:10
Constants.FA_Note_PreQuitDoc int
Value:11
Constants.FA_Note_DirtyDoc int
Value:12
Constants.FA_Note_ClientCall int
Value:13
Constants.FA_Note_FilterIn int
Value:14
Constants.FA_Note_FilterOut int
Value:15
Constants.FA_Note_PreOpenBook int
Value:16
137
CONSTANTS
CHAPTER 5 OBJECT REFERENCE
Constants.FA_Note_PostOpenBook int
Value:17
Constants.FA_Note_PreOpenBookMIF int
Value:18
Constants.FA_Note_PostOpenBookMIF int
Value:19
Constants.FA_Note_PreSaveBook int
Value:20
Constants.FA_Note_PostSaveBook int
Value:21
Constants.FA_Note_PreSaveBookMIF int
Value:22
Constants.FA_Note_PostSaveBookMIF int
Value:23
Constants.FA_Note_PreQuitBook int
Value:24
Constants.FA_Note_DirtyBook int
Value:25
Constants.FA_Note_PreQuitSession int
Value:26
Constants.FA_Note_PostQuitSession int
Value:27
Constants.FA_Note_PreRevertDoc int
Value:28
Constants.FA_Note_PostRevertDoc int
Value:29
Constants.FA_Note_PreRevertBook int
Value:30
Constants.FA_Note_PostRevertBook int
Value:31
Constants.FA_Note_PreAutoSaveDoc int
Value:32
Constants.FA_Note_PostAutoSaveDoc int
Value:33
138
CONSTANTS
CHAPTER 5 OBJECT REFERENCE
Constants.FA_Note_BackToUser int
Value:34
Constants.FA_Note_DisplayClientTiDialo int
g Value:35
Constants.FA_Note_UpdateAllClientTi int
Value:36
Constants.FA_Note_UpdateClientTi int
Value:37
Constants.FA_Note_PreImport int
Value:38
Constants.FA_Note_PostImport int
Value:39
Constants.FA_Note_PostQuitDoc int
Value:40
Constants.FA_Note_PostQuitBook int
Value:41
Constants.FA_Note_PreFunction int
Value:42
Constants.FA_Note_PostFunction int
Value:43
Constants.FA_Note_PreMouseCommand int
Value:44
Constants.FA_Note_PostMouseComman int
d Value:45
Constants.FA_Note_PreHypertext int
Value:46
Constants.FA_Note_PostHypertext int
Value:47
Constants.FA_Note_PrePrint int
Value:48
Constants.FA_Note_PostPrint int
Value:49
Constants.FA_Note_BodyPageAdded int
Value:50
139
CONSTANTS
CHAPTER 5 OBJECT REFERENCE
Constants.FA_Note_BodyPageDeleted int
Value:51
Constants.FA_Note_PreInsertElement int
Value:52
Constants.FA_Note_PostInsertElement int
Value:53
Constants.FA_Note_PreChangeElement int
Value:54
Constants.FA_Note_PostChangeElement int
Value:55
Constants.FA_Note_PreWrapElement int
Value:56
Constants.FA_Note_PostWrapElement int
Value:57
Constants.FA_Note_PreDragElement int
Value:58
Constants.FA_Note_PostDragElement int
Value:59
Constants.FA_Note_PreCopyElement int
Value:60
Constants.FA_Note_PostCopyElement int
Value:61
Constants.FA_Note_PreSetAttrValue int
Value:62
Constants.FA_Note_PostSetAttrValue int
Value:63
Constants.FA_Note_PreImportElemDefs int
Value:64
Constants.FA_Note_PostImportElemDefs int
Value:65
Constants.FA_Note_ECMInternal int
Value:66
Constants.FA_Note_PreExport int
Value:67
140
CONSTANTS
CHAPTER 5 OBJECT REFERENCE
Constants.FA_Note_PostExport int
Value:68
Constants.FA_Note_PreInlineTypeIn int
Value:69
Constants.FA_Note_PostInlineTypeIn int
Value:70
Constants.FA_Note_PreSaveAsPDFDialog int
Value:71
Constants.FA_Note_PostSaveAsPDFDialo int
g Value:72
Constants.FA_Note_PreDistill int
Value:73
Constants.FA_Note_PostDistill int
Value:74
Constants.FA_Note_FilterFileToFile int
Value:75
Constants.FA_Note_PreBookComponent int
Open Value:76
Constants.FA_Note_PostBookComponen int
tOpen Value:77
Constants.FA_Note_PreGenerate int
Value:78
Constants.FA_Note_PostGenerate int
Value:79
Constants.FA_Note_PreGoToXrefSrc int
Value:80
Constants.FA_Note_PostGoToXrefSrc int
Value:81
Constants.FA_Note_PreOpenSGML int
Value:82
Constants.FA_Note_PostOpenSGML int
Value:83
Constants.FA_Note_Dialog int
Value:84
141
CONSTANTS
CHAPTER 5 OBJECT REFERENCE
Constants.FA_Note_Alert int
Value:85
Constants.FA_Note_Palette int
Value:86
Constants.FA_Note_ToolBar int
Value:87
Constants.FA_Note_ConsoleMessage int
Value:88
Constants.FA_Note_Help int
Value:89
Constants.FA_Note_URL int
Value:90
Constants.FA_Note_CursorChange int
Value:91
Constants.FA_Note_FontSubstitution int
Value:92
Constants.FA_Note_UndoCheckpoint int
Value:93
Constants.FA_Note_FileOpen int
Value:94
Constants.FA_Note_PreOpenXML int
Value:95
Constants.FA_Note_PostOpenXML int
Value:96
Constants.FA_Note_PreSaveXML int
Value:97
Constants.FA_Note_PostSaveXML int
Value:98
Constants.FA_Note_PreSaveSGML int
Value:99
Constants.FA_Note_PostSaveSGML int
Value:100
Constants.FA_Note_U3DCommand int
Value:101
142
CONSTANTS
CHAPTER 5 OBJECT REFERENCE
Constants.FA_Note_Not_U3DCommand int
Value:102
Constants.FA_Note_Not_RSC_Supported int
_File Value:103
Constants.FA_Note_RSC_Supported_File int
Value:104
Constants.FA_Note_PostActiveDocChang int
e Value:105
Constants.FA_Note_PreUpdateXRefs int
Value:106
Constants.FA_Note_PostUpdateXRefs int
Value:107
Constants.FA_Note_DisplayClientXRefDia int
log Value:108
Constants.FA_Note_QuitModelessDialog int
Value:109
Constants.FA_Note_InsertTopicRef int
Value:110
Constants.FA_Note_InsertConRef int
Value:111
Constants.FA_Note_GenerateFM int
Value:112
Constants.FA_Note_OpenAllTopicrefs int
Value:113
Constants.FA_Note_UpdateRefs int
Value:114
Constants.FA_Note_AssignId int
Value:115
Constants.FA_Note_DITAOptions int
Value:116
Constants.FA_Note_NewDitamapFile int
Value:117
Constants.FA_Note_NewBookmapFile int
Value:118
143
CONSTANTS
CHAPTER 5 OBJECT REFERENCE
Constants.FA_Note_NewTopicFile int
Value:119
Constants.FA_Note_NewTaskFile int
Value:120
Constants.FA_Note_NewConceptFile int
Value:121
Constants.FA_Note_NewReferenceFile int
Value:122
Constants.FA_Note_NewGlossEntryFile int
Value:123
Constants.FA_Note_SWF_File int
Value:124
Constants.FA_Note_Not_SWF_File int
Value:125
Constants.FA_Note_Enable_Disable_DIT int
A_Menu_Commands Value:126
Constants.FA_Note_Dialog_Create int
Value:127
Constants.FA_Note_SetAttrValue int
Value:128
Constants.FA_Note_UpdateRefs_On_Sav int
e Value:129
Constants.FA_Note_Read_Struct_App int
Value:130
Constants.FA_Note_Struct_Wizard int
Value:131
Constants.FA_Note_Open_Dtd int
Value:132
Constants.FA_Note_Open_Schema int
Value:133
Constants.FA_Note_Open_EDD_For_App int
Value:134
Constants.FA_Note_PostSetPropertyValu int
e Value:135
144
CONSTANTS
CHAPTER 5 OBJECT REFERENCE
Constants.FA_Note_Not_AI_Supported_ int
File Value:136
Constants.FA_Note_AI_Supported_File int
Value:137
Constants.FA_Note_Poster_Applied int
Value:138
Constants.FA_Note_PrePublishDitamap int
Value:139
Constants.FA_Note_PostPublishDitamap int
Value:140
Constants.FA_Note_UpdateDITAReferenc int
e Value:141
Constants.FA_Note_UpdateDITAReferenc int
es Value:142
Constants.FA_Note_LoadKeyCatalog int
Value:143
Constants.FA_Note_ReLoadKeyCatalog int
Value:144
Constants.FA_Note_EnumeratedCompon int
ent Value:145
Constants.FA_Note_PreSwitchView int
Value:146
Constants.FA_Note_PostSwitchView int
Value:147
Constants.FA_Note_IsCommandEnabled int
Value:148
Constants.FA_Note_Num int
Value:149
Constants.FTI_String int
Value:0x00000001
Constants.FTI_LineBegin int
Value:0x00000002
Constants.FTI_LineEnd int
Value:0x00000004
145
CONSTANTS
CHAPTER 5 OBJECT REFERENCE
Constants.FTI_PgfBegin int
Value:0x00000008
Constants.FTI_PgfEnd int
Value:0x00000010
Constants.FTI_FlowBegin int
Value:0x00000020
Constants.FTI_FlowEnd int
Value:0x00000040
Constants.FTI_PageBegin int
Value:0x00000080
Constants.FTI_PageEnd int
Value:0x00000100
Constants.FTI_SubColBegin int
Value:0x00000200
Constants.FTI_SubColEnd int
Value:0x00000400
Constants.FTI_FrameAnchor int
Value:0x00000800
Constants.FTI_FnAnchor int
Value:0x00001000
Constants.FTI_TblAnchor int
Value:0x00002000
Constants.FTI_MarkerAnchor int
Value:0x00004000
Constants.FTI_XRefBegin int
Value:0x00008000
Constants.FTI_XRefEnd int
Value:0x00010000
Constants.FTI_VarBegin int
Value:0x00020000
Constants.FTI_VarEnd int
Value:0x00040000
Constants.FTI_ElementBegin int
Value:0x00080000
146
CONSTANTS
CHAPTER 5 OBJECT REFERENCE
Constants.FTI_ElementEnd int
Value:0x00100000
Constants.FTI_CharPropsChange int
Value:0x00200000
Constants.FTI_TextFrameBegin int
Value:0x00400000
Constants.FTI_TextFrameEnd int
Value:0x00800000
Constants.FTI_TextObjId int
Value:0x01000000
Constants.FTI_TextInsetBegin int
Value:0x02000000
Constants.FTI_TextInsetEnd int
Value:0x04000000
Constants.FTI_ElemPrefixBegin int
Value:0x08000000
Constants.FTI_ElemPrefixEnd int
Value:0x10000000
Constants.FTI_ElemSuffixBegin int
Value:0x20000000
Constants.FTI_ElemSuffixEnd int
Value:0x40000000
Constants.FTI2_RubiTextBegin int
Value:0x80000001
Constants.FTI2_RubiTextEnd int
Value:0x80000002
Constants.FTI2_RubiCompositeBegin int
Value:0x80000004
Constants.FTI2_RubiCompositeEnd int
Value:0x80000008
Constants.FTI_HardLineEnd int
Value:1
Constants.FTI_HyphenLineEnd int
Value:2
147
CONSTANTS
CHAPTER 5 OBJECT REFERENCE
Constants.FTF_FAMILY int
Value:0x80000000
Constants.FTF_VARIATION int
Value:0x40000000
Constants.FTF_WEIGHT int
Value:0x20000000
Constants.FTF_ANGLE int
Value:0x10000000
Constants.FTF_UNDERLINING int
Value:0x08000000
Constants.FTF_STRIKETHROUGH int
Value:0x04000000
Constants.FTF_OVERLINE int
Value:0x02000000
Constants.FTF_CHANGEBAR int
Value:0x01000000
Constants.FTF_OUTLINE int
Value:0x00800000
Constants.FTF_SHADOW int
Value:0x00400000
Constants.FTF_PAIRKERN int
Value:0x00200000
Constants.FTF_SIZE int
Value:0x00100000
Constants.FTF_KERNX int
Value:0x00080000
Constants.FTF_KERNY int
Value:0x00040000
Constants.FTF_SPREAD int
Value:0x00020000
Constants.FTF_COLOR int
Value:0x00010000
Constants.FTF_CHARTAG int
Value:0x00008000
148
CONSTANTS
CHAPTER 5 OBJECT REFERENCE
Constants.FTF_CAPITALIZATION int
Value:0x00004000
Constants.FTF_POSITION int
Value:0x00002000
Constants.FTF_STRETCH int
Value:0x00001000
Constants.FTF_LANGUAGE int
Value:0x00000800
Constants.FTF_TSUME int
Value:0x00000400
Constants.FTF_ENCODING int
Value:0x00000200
Constants.FTF_IIF int
Value:0x00000002
Constants.FTF_CONDITIONTAG int
Value:0x00000001
Constants.FTF_ALL int
Value:0xFFFFFE03
Constants.FV_OBJ_END_OFFSET int
Value:0x50000000
Constants.FT_Bad int
Value:0
Constants.FT_Integer int
Value:1
Constants.FT_Metric int
Value:2
Constants.FT_String int
Value:3
Constants.FT_Id int
Value:4
Constants.FT_Metrics int
Value:5
Constants.FT_Strings int
Value:6
149
CONSTANTS
CHAPTER 5 OBJECT REFERENCE
Constants.FT_Points int
Value:7
Constants.FT_Tabs int
Value:8
Constants.FT_TextLoc int
Value:9
Constants.FT_TextRange int
Value:10
Constants.oldFT_ElementFmts int
Value:11
Constants.FT_ElementCatalog int
Value:12
Constants.FT_Ints int
Value:13
Constants.FT_UBytes int
Value:14
Constants.FT_UInts int
Value:15
Constants.FT_FormatBranches int
Value:16
Constants.FT_AttributeDefs int
Value:17
Constants.FT_Attributes int
Value:18
Constants.FT_ElementRange int
Value:19
Constants.FT_Vals int
Value:20
Constants.FT_AttributesEx int
Value:21
Constants.FT_Num int
Value:22
Constants.FI_PLUGIN_PRODUCTNAME int
Value:1
150
CONSTANTS
CHAPTER 5 OBJECT REFERENCE
Constants.FI_PLUGIN_NAME int
Value:2
Constants.FI_PLUGIN_TYPE int
Value:3
Constants.FI_PLUGIN_DESCRIPTION int
Value:4
Constants.FI_PLUGIN_PRODUCTS int
Value:5
Constants.FI_PLUGIN_FACET int
Value:6
Constants.FI_PLUGIN_FORMATID int
Value:7
Constants.FI_PLUGIN_VENDOR int
Value:8
Constants.FI_PLUGIN_SUFFIX int
Value:9
Constants.FI_PLUGIN_INFORMAT int
Value:10
Constants.FI_PLUGIN_OUTFORMAT int
Value:11
Constants.FO_Session int
Value:0
Constants.FO_StringResource int
Value:1
Constants.FO_Book int
Value:2
Constants.FO_BookComponent int
Value:3
Constants.FO_Doc int
Value:4
Constants.FO_BodyPage int
Value:5
Constants.FO_MasterPage int
Value:6
151
CONSTANTS
CHAPTER 5 OBJECT REFERENCE
Constants.FO_RefPage int
Value:7
Constants.FO_HiddenPage int
Value:8
Constants.FO_Last_Page int
Value:8
Constants.FO_UnanchoredFrame int
Value:9
Constants.FO_Group int
Value:10
Constants.FO_Arc int
Value:11
Constants.FO_Rectangle int
Value:12
Constants.FO_Ellipse int
Value:13
Constants.FO_RoundRect int
Value:14
Constants.FO_Polyline int
Value:15
Constants.FO_Polygon int
Value:16
Constants.FO_Line int
Value:17
Constants.FO_TextLine int
Value:18
Constants.FO_TextFrame int
Value:19
Constants.FO_Inset int
Value:20
Constants.FO_Math int
Value:21
Constants.FO_DBGroup int
Value:22
152
CONSTANTS
CHAPTER 5 OBJECT REFERENCE
Constants.FO_Last_Graphic int
Value:22
Constants.FO_AFrame int
Value:23
Constants.FO_XLast_Graphic int
Value:23
Constants.FO_Marker int
Value:24
Constants.FO_Fn int
Value:25
Constants.FO_XRef int
Value:26
Constants.FO_XRefFmt int
Value:27
Constants.FO_Var int
Value:28
Constants.FO_VarFmt int
Value:29
Constants.FO_Flow int
Value:30
Constants.FO_Pgf int
Value:31
Constants.FO_PgfFmt int
Value:32
Constants.FO_CharFmt int
Value:33
Constants.FO_CondFmt int
Value:34
Constants.FO_Color int
Value:35
Constants.FO_Tbl int
Value:36
Constants.FO_TblFmt int
Value:37
153
CONSTANTS
CHAPTER 5 OBJECT REFERENCE
Constants.FO_Row int
Value:38
Constants.FO_Cell int
Value:39
Constants.FO_RulingFmt int
Value:40
Constants.FO_ElementDef int
Value:41
Constants.FO_Element int
Value:42
Constants.FO_DialogResource int
Value:43
Constants.FO_DlgBox int
Value:44
Constants.FO_DlgButton int
Value:45
Constants.FO_DlgTriBox int
Value:46
Constants.FO_DlgCheckBox int
Value:47
Constants.FO_DlgPopUp int
Value:48
Constants.FO_DlgScrollBox int
Value:49
Constants.FO_DlgEditBox int
Value:50
Constants.FO_DlgRadioButton int
Value:51
Constants.FO_DlgLabel int
Value:52
Constants.FO_DlgImage int
Value:53
Constants.FO_DlgScrollBar int
Value:54
154
CONSTANTS
CHAPTER 5 OBJECT REFERENCE
Constants.FO_Menu int
Value:55
Constants.FO_Command int
Value:56
Constants.FO_MenuItemSeparator int
Value:57
Constants.FO_FmtChangeList int
Value:58
Constants.FO_FmtRule int
Value:59
Constants.FO_FmtRuleClause int
Value:60
Constants.FO_TiFlow int
Value:61
Constants.FO_TiText int
Value:62
Constants.FO_TiTextTable int
Value:63
Constants.FO_TiApiClient int
Value:64
Constants.FO_SubCol int
Value:65
Constants.FO_MarkerType int
Value:66
Constants.FO_CombinedFontDefn int
Value:67
Constants.FO_Rubi int
Value:68
Constants.FO_Alert int
Value:69
Constants.FO_CursorResource int
Value:70
Constants.FO_AttrCondExpr int
Value:71
155
CONSTANTS
CHAPTER 5 OBJECT REFERENCE
Constants.FO_DlgListView int
Value:72
Constants.FO_GraphicsFmt int
Value:73
Constants.FO_CMSRegistration int
Value:74
Constants.FO_CMSSession int
Value:75
Constants.FO_CMSObject int
Value:76
Constants.FO_KeyCatalog int
Value:77
Constants.FO_Iterator int
Value:78
Constants.FO_Num int
Value:79
Constants.FO_First_Internal int
Value:79
Constants.FO_Page int
Value:(79+0)
Constants.FO_Graphic int
Value:(79+1)
Constants.FO_Frame int
Value:(79+2)
Constants.FO_Cblock int
Value:(79+3)
Constants.FO_SubCond int
Value:(79+4)
Constants.FO_SubStyle int
Value:(79+5)
Constants.FO_SubDash int
Value:(79+6)
Constants.FO_SubCell int
Value:(79+7)
156
CONSTANTS
CHAPTER 5 OBJECT REFERENCE
Constants.FO_SubTbl int
Value:(79+8)
Constants.FO_SubPblock int
Value:(79+9)
Constants.FO_SubTextDef int
Value:(79+10)
Constants.FO_MenuCell int
Value:(79+11)
Constants.FO_TextInset int
Value:(79+12)
Constants.FO_DitaMap int
Value:(79+13)
Constants.FO_Last_Internal int
Value:(79+14)
Constants.FO_CMSConnection int
Value:(79+15)
Constants.FO_CMSObject2 int
Value:(79+16)
Constants.FO_Bad int
Value:255
Constants.FO_AnchoredFrame int
Value:23
Constants.FO_UFrame int
Value:9
Constants.FP_Name int
Value:20
Constants.FP_Unique int
Value:21
Constants.FP_UserString int
Value:22
Constants.FP_ObjectAttributes int
Value:23
Constants.FP_Label int
Value:30
157
CONSTANTS
CHAPTER 5 OBJECT REFERENCE
Constants.FP_IsIconified int
Value:31
Constants.FP_IsInFront int
Value:32
Constants.FP_ScreenX int
Value:33
Constants.FP_ScreenY int
Value:34
Constants.FP_ScreenWidth int
Value:35
Constants.FP_ScreenHeight int
Value:36
Constants.FV_SessionId int
Value:0
Constants.FP_VersionRevision int
Value:41
Constants.FP_ProductName int
Value:42
Constants.FP_VersionMajor int
Value:43
Constants.FP_VersionMinor int
Value:44
Constants.FP_Platform int
Value:45
Constants.FP_OperatingSystem int
Value:46
Constants.FP_WindowSystem int
Value:47
Constants.FP_AutoSave int
Value:48
Constants.FP_AutoSaveSeconds int
Value:49
Constants.FP_AutoBackup int
Value:50
158
CONSTANTS
CHAPTER 5 OBJECT REFERENCE
Constants.FP_ActiveDoc int
Value:51
Constants.FP_ProgId int
Value:2421
Constants.FP_IsFMRunningAsServer int
Value:2348
Constants.FP_ActiveView int
Value:2422
Constants.FP_CurrentDoc int
Value:2401
Constants.FP_PDFPageNum int
Value:2402
Constants.FP_UndoFDKRecording int
Value:2403
Constants.FP_StackWarningLevel int
Value:2404
Constants.FP_NoFlashInPDF int
Value:2405
Constants.FP_No3DInPDF int
Value:2406
Constants.FP_InsetURL int
Value:2407
Constants.FP_DontShowWelcomeScreen int
Value:2408
Constants.FP_TechSuiteInternal int
Value:2409
Constants.FP_IsTechnicalSuiteLicensed int
Value:2410
Constants.FP_TechSuiteInternal2 int
Value:2411
Constants.FP_IsFMRunningInTrialPeriod int
Value:2412
Constants.FP_EnableAutoSpellCheck int
Value:2413
159
CONSTANTS
CHAPTER 5 OBJECT REFERENCE
Constants.FP_CustomDelimiter int
Value:2420
Constants.FV_WarnNever int
Value:0
Constants.FV_WarnAlways int
Value:1
Constants.FV_WarnOnce int
Value:2
Constants.FV_UndoAll int
Value:3
Constants.FV_RedoAll int
Value:4
Constants.FP_ActiveBook int
Value:52
Constants.FP_FirstOpenDoc int
Value:53
Constants.FP_FirstOpenBook int
Value:54
Constants.FP_FontFamilyNames int
Value:55
Constants.FP_FontVariationNames int
Value:56
Constants.FP_FontWeightNames int
Value:57
Constants.FP_FontAngleNames int
Value:58
Constants.FP_MarkerNames int
Value:59
Constants.FP_FontFamilyAttributes int
Value:60
Constants.FV_FAMILY_VISIBLE int
Value:0x00000001
Constants.FV_FAMILY_SELECTABLE int
Value:0x00000002
160
CONSTANTS
CHAPTER 5 OBJECT REFERENCE
Constants.FV_FAMILY_MAPPED int
Value:0x00000004
Constants.FV_FAMILY_SURROGATE int
Value:0xFFFF0000
Constants.FP_RememberMissingFontNa int
mes Value:61
Constants.FP_Mif8bitOutput int
Value:62
Constants.FP_GreekSize int
Value:63
Constants.FP_RetainUndoState int
Value:64
Constants.FP_ProductIsStructured int
Value:65
Constants.FP_ProductIsDemo int
Value:66
Constants.FP_DisableAutofitAfterZoom int
Value:67
Constants.FP_DefaultFontFamily int
Value:68
Constants.FP_DefaultFontVariation int
Value:69
Constants.FP_DefaultFontWeight int
Value:70
Constants.FP_DefaultFontAngle int
Value:71
Constants.FP_CTFontContext int
Value:72
Constants.FP_FontFamilyFullNames int
Value:73
Constants.FP_RpcPropertyName int
Value:76
Constants.FP_RpcProgramNumber int
Value:77
161
CONSTANTS
CHAPTER 5 OBJECT REFERENCE
Constants.FP_DisplayName int
Value:78
Constants.FP_ProcessNumber int
Value:79
Constants.FP_OpenDir int
Value:80
Constants.FP_HostName int
Value:81
Constants.FP_UserName int
Value:82
Constants.FP_UserLogin int
Value:83
Constants.FP_UserHomeDir int
Value:84
Constants.FP_UserSettingsDir int
Value:152
Constants.FP_Path int
Value:85
Constants.FP_TmpDir int
Value:86
Constants.FP_FM_HomeDir int
Value:87
Constants.FP_FM_BinDir int
Value:88
Constants.FP_FM_InitDir int
Value:89
Constants.FP_FM_CurrentDir int
Value:90
Constants.FP_FM_SgmlDir int
Value:100
Constants.FP_FM_StructureDir int
Value:2031
Constants.FP_FM_XmlDir int
Value:2032
162
CONSTANTS
CHAPTER 5 OBJECT REFERENCE
Constants.FP_Reformatting int
Value:91
Constants.FP_Displaying int
Value:92
Constants.FP_ApplyFormatRules int
Value:93
Constants.FP_ApplyEOPRules int
Value:2030
Constants.FP_Validating int
Value:94
Constants.FP_ToolBar int
Value:95
Constants.FP_FirstMenuItemInSession int
Value:97
Constants.FP_FirstCommandInSession int
Value:98
Constants.FP_CurrentMenuSet int
Value:99
Constants.FV_MENU_QUICK int
Value:1
Constants.FV_MENU_COMPLETE int
Value:2
Constants.FV_MENU_CUSTOM int
Value:3
Constants.FP_IconBarOn int
Value:101
Constants.FP_HelpPending int
Value:102
Constants.FP_FM_HelpDir int
Value:103
Constants.FP_PercentDone int
Value:104
Constants.FP_ActiveAlert int
Value:105
163
CONSTANTS
CHAPTER 5 OBJECT REFERENCE
Constants.FP_Snap int
Value:151
Constants.FP_Gravity int
Value:107
Constants.FP_KByteAllocationSize int
Value:106
Constants.FP_ImportFilters int
Value:2288
Constants.FP_ExportFilters int
Value:2289
Constants.FP_UIColorBackground int
Value:2297
Constants.FP_UIColorRuler int
Value:2298
Constants.FP_BIBGetAddressProc int
Value:2299
Constants.FP_RasterFilterDpi int
Value:2400
Constants.FV_Hint_HintVersion int
Value:0
Constants.FV_Hint_VendorId int
Value:1
Constants.FV_Hint_FormatId int
Value:2
Constants.FV_Hint_Platform int
Value:3
Constants.FV_Hint_FilterVersion int
Value:4
Constants.FV_Hint_FilterName int
Value:5
Constants.FP_DefaultKeyCatalog int
Value:2871
Constants.FP_FirstKeyCatalogInSession int
Value:2872
164
CONSTANTS
CHAPTER 5 OBJECT REFERENCE
Constants.FP_KeyCatalogWorkflow int
Value:2859
Constants.FV_KeyCatalogWorkflowAuth int
oring Value:0
Constants.FV_KeyCatalogWorkflowPublis int
hing Value:1
Constants.FV_KeyCatalogWorkflowSearc int
hing Value:2
Constants.FV_KeyCatalogWorkflowMax int
Value:3
Constants.FP_StatusLine int
Value:108
Constants.FP_TextSelection int
Value:109
Constants.FP_IsOnScreen int
Value:110
Constants.FP_NextOpenDocInSession int
Value:111
Constants.FP_FirstGraphicInDoc int
Value:112
Constants.FP_FirstPgfInDoc int
Value:113
Constants.FP_FirstMarkerInDoc int
Value:114
Constants.FP_FirstVarInDoc int
Value:115
Constants.FP_FirstVarFmtInDoc int
Value:116
Constants.FP_FirstXRefInDoc int
Value:117
Constants.FP_FirstXRefFmtInDoc int
Value:118
Constants.FP_FirstFnInDoc int
Value:119
165
CONSTANTS
CHAPTER 5 OBJECT REFERENCE
Constants.FP_FirstTblInDoc int
Value:120
Constants.FP_FirstFlowInDoc int
Value:121
Constants.FP_FirstPgfFmtInDoc int
Value:122
Constants.FP_FirstCharFmtInDoc int
Value:123
Constants.FP_FirstCondFmtInDoc int
Value:124
Constants.FP_FirstTblFmtInDoc int
Value:125
Constants.FP_FirstRulingFmtInDoc int
Value:126
Constants.FP_FirstColorInDoc int
Value:127
Constants.FP_FirstSelectedGraphicInDoc int
Value:128
Constants.FP_SelectedTbl int
Value:129
Constants.FP_FileExtensionOverride int
Value:2813
Constants.FP_FirstAttrCondExprInDoc int
Value:2815
Constants.FP_DocOpenType int
Value:130
Constants.FV_DOC_TYPE_BINARY int
Value:0x01
Constants.FV_DOC_TYPE_TEXT int
Value:0x02
Constants.FV_DOC_TYPE_MIF int
Value:0x03
Constants.FV_DOC_TYPE_FILTER int
Value:0x04
166
CONSTANTS
CHAPTER 5 OBJECT REFERENCE
Constants.FP_DocSaveFormat int
Value:2415
Constants.FP_DocIsModified int
Value:131
Constants.FP_DocIsHelp int
Value:132
Constants.FP_DocIsViewOnly int
Value:133
Constants.FP_ViewOnlyWinPalette int
Value:134
Constants.FP_ViewOnlyWinMenubar int
Value:135
Constants.FP_ViewOnlyWinBorders int
Value:136
Constants.FP_ViewOnlyWinPopup int
Value:137
Constants.FP_ViewOnlyXRef int
Value:138
Constants.FV_VOX_NOT_ACTIVE int
Value:0
Constants.FV_VOX_GOTO_BEHAVIOR int
Value:1
Constants.FV_VOX_OPEN_BEHAVIOR int
Value:2
Constants.FV_VOX_ALERT int
Value:3
Constants.FP_ViewOnlySelect int
Value:139
Constants.FV_VOS_USER_ONLY int
Value:1
Constants.FV_VOS_NONE int
Value:2
Constants.FV_VOS_YES int
Value:3
167
CONSTANTS
CHAPTER 5 OBJECT REFERENCE
Constants.FP_ViewOnlyDeadCodes int
Value:140
Constants.FP_FirstTiInDoc int
Value:141
Constants.FP_FirstSelectedTiInDoc int
Value:142
Constants.FP_DocIsViewOnlyWinPalette int
Value:134
Constants.FP_MenuBar int
Value:143
Constants.FP_ViewOnlyMenuBar int
Value:144
Constants.FP_DocSaveType int
Value:145
Constants.FP_Untouchable int
Value:146
Constants.FP_DocFluidFlow int
Value:147
Constants.FP_FirstMarkerTypeInDoc int
Value:148
Constants.FP_MarkerTypeNames int
Value:149
Constants.FP_AddMarkerTypeToStandar int
dMarkers Value:150
Constants.FP_ShowAll int
Value:155
Constants.FP_ShowCondIndicators int
Value:156
Constants.FP_DontUpdateXRefs int
Value:159
Constants.FP_DontUpdateTextInsets int
Value:160
Constants.FP_LineBreakAfter int
Value:177
168
CONSTANTS
CHAPTER 5 OBJECT REFERENCE
Constants.FP_SuperScriptSize int
Value:178
Constants.FP_SuperScriptShift int
Value:179
Constants.FP_SubScriptSize int
Value:180
Constants.FP_SubScriptShift int
Value:181
Constants.FP_SmallCapsSize int
Value:182
Constants.FP_SuperScriptStretch int
Value:183
Constants.FP_SubScriptStretch int
Value:184
Constants.FP_SmallCapsStretch int
Value:185
Constants.FP_RubiSize int
Value:186
Constants.FP_RubiFixedSize int
Value:187
Constants.FP_NarrowRubiSpaceForJapan int
ese Value:188
Constants.FP_WideRubiSpaceForJapanes int
e Value:189
Constants.FP_NarrowRubiSpaceForOthe int
r Value:190
Constants.FP_WideRubiSpaceForOther int
Value:191
Constants.FV_WIDE int
Value:0
Constants.FV_NARROW int
Value:1
Constants.FV_PROPORTIONAL int
Value:2
169
CONSTANTS
CHAPTER 5 OBJECT REFERENCE
Constants.FP_RubiOverhang int
Value:192
Constants.FP_RubiAlignAtLineBounds int
Value:193
Constants.FP_FirstRubiInDoc int
Value:194
Constants.FP_ScreenCaptureDocToFile int
Value:195
Constants.FP_Dictionary int
Value:203
Constants.FP_VolNumComputeMethod int
Value:211
Constants.FV_NUM_READ_FROM_FILE int
Value:0x00
Constants.FV_NUM_CONTINUE int
Value:0x01
Constants.FV_NUM_RESTART int
Value:0x02
Constants.FV_NUM_SAME int
Value:0x03
Constants.FV_NUM_PERPAGE int
Value:0x03
Constants.FP_VolumeNumber int
Value:212
Constants.FP_VolumeNumStyle int
Value:213
Constants.FP_VolumeNumText int
Value:214
Constants.FP_ChapNumComputeMetho int
d Value:215
Constants.FP_ChapterNumber int
Value:216
Constants.FP_ChapterNumStyle int
Value:217
170
CONSTANTS
CHAPTER 5 OBJECT REFERENCE
Constants.FV_NUMSTYLE_NUMERIC int
Value:0x00
Constants.FV_NUMSTYLE_ROMAN_UC int
Value:0x01
Constants.FV_NUMSTYLE_ROMAN_LC int
Value:0x02
Constants.FV_NUMSTYLE_ALPHA_UC int
Value:0x03
Constants.FV_NUMSTYLE_ALPHA_LC int
Value:0x04
Constants.FV_NUMSTYLE_KANJI int
Value:0x05
Constants.FV_NUMSTYLE_ZENKAKU int
Value:0x06
Constants.FV_NUMSTYLE_ZENKAKU_UC int
Value:0x07
Constants.FV_NUMSTYLE_ZENKAKU_LC int
Value:0x08
Constants.FV_NUMSTYLE_KANJI_KAZU int
Value:0x09
Constants.FV_NUMSTYLE_DAIJI int
Value:0x0a
Constants.FV_NUMSTYLE_TEXT int
Value:0x0b
Constants.FV_NUMSTYLE_FULLWIDTH int
Value:0x0c
Constants.FV_NUMSTYLE_FULLWIDTH_U int
C Value:0x0d
Constants.FV_NUMSTYLE_FULLWIDTH_L int
C Value:0x0e
Constants.FV_NUMSTYLE_CHINESE_NU int
MERIC Value:0x10
Constants.FP_ChapterNumText int
Value:218
171
CONSTANTS
CHAPTER 5 OBJECT REFERENCE
Constants.FP_FirstPageNum int
Value:224
Constants.FP_PageNumStyle int
Value:225
Constants.FV_PAGE_NUM_NUMERIC int
Value:0x00
Constants.FV_PAGE_NUM_ROMAN_UC int
Value:0x01
Constants.FV_PAGE_NUM_ROMAN_LC int
Value:0x02
Constants.FV_PAGE_NUM_ALPHA_UC int
Value:0x03
Constants.FV_PAGE_NUM_ALPHA_LC int
Value:0x04
Constants.FV_PAGE_NUM_KANJI int
Value:0x05
Constants.FV_PAGE_NUM_ZENKAKU int
Value:0x06
Constants.FV_PAGE_NUM_ZENKAKU_UC int
Value:0x07
Constants.FV_PAGE_NUM_ZENKAKU_LC int
Value:0x08
Constants.FV_PAGE_NUM_KANJI_KAZU int
Value:0x09
Constants.FV_PAGE_NUM_DAIJI int
Value:0x0a
Constants.FV_PAGE_NUM_FULLWIDTH int
Value:0x0c
Constants.FV_PAGE_NUM_FULLWIDTH_ int
UC Value:0x0d
Constants.FV_PAGE_NUM_FULLWIDTH_ int
LC Value:0x0e
Constants.FV_PAGE_NUM_CHINESE_NU int
MERIC Value:0x10
172
CONSTANTS
CHAPTER 5 OBJECT REFERENCE
Constants.FP_DocIsDoubleSided int
Value:226
Constants.FP_FirstPageVerso int
Value:227
Constants.FP_PointPageNumStyle int
Value:228
Constants.FV_POINT_PAGE_NUM_NUM int
ERIC Value:0x00
Constants.FV_POINT_PAGE_NUM_ROM int
AN_UC Value:0x01
Constants.FV_POINT_PAGE_NUM_ROM int
AN_LC Value:0x02
Constants.FV_POINT_PAGE_NUM_ALPH int
A_UC Value:0x03
Constants.FV_POINT_PAGE_NUM_ALPH int
A_LC Value:0x04
Constants.FV_POINT_PAGE_NUM_KANJI int
Value:0x05
Constants.FV_POINT_PAGE_NUM_ZENK int
AKU Value:0x06
Constants.FV_POINT_PAGE_NUM_ZENK int
AKU_UC Value:0x07
Constants.FV_POINT_PAGE_NUM_ZENK int
AKU_LC Value:0x08
Constants.FV_POINT_PAGE_NUM_KANJI int
_KAZU Value:0x09
Constants.FV_POINT_PAGE_NUM_DAIJI int
Value:0x0a
Constants.FV_POINT_PAGE_FULLWIDTH int
Value:0x0c
Constants.FV_POINT_PAGE_FULLWIDTH int
_UC Value:0x0d
Constants.FV_POINT_PAGE_FULLWIDTH int
_LC Value:0x0e
173
CONSTANTS
CHAPTER 5 OBJECT REFERENCE
Constants.FV_POINT_PAGE_CHINESE_N int
UMERIC Value:0x10
Constants.FP_PageRounding int
Value:229
Constants.FV_PR_DEL_EMPTY int
Value:0x01
Constants.FV_PR_KEEP_NUM_EVEN int
Value:0x02
Constants.FV_PR_KEEP_NUM_ODD int
Value:0x03
Constants.FV_PR_DONT_CHANGE int
Value:0x04
Constants.FP_TopMargin int
Value:230
Constants.FP_BottomMargin int
Value:231
Constants.FP_LeftMargin int
Value:232
Constants.FP_RightMargin int
Value:233
Constants.FP_ColGap int
Value:234
Constants.FP_NumCols int
Value:235
Constants.FP_CurrentPage int
Value:236
Constants.FP_SmartQuotes int
Value:237
Constants.FP_AutoChangeBars int
Value:238
Constants.FP_SmartSpaces int
Value:239
Constants.FP_CurrentInset int
Value:240
174
CONSTANTS
CHAPTER 5 OBJECT REFERENCE
Constants.FP_ChangeBarDistance int
Value:259
Constants.FP_ChangeBarPosition int
Value:260
Constants.FV_CB_COL_LEFT int
Value:0x00
Constants.FV_CB_COL_RIGHT int
Value:0x01
Constants.FV_CB_COL_NEAREST int
Value:0x02
Constants.FV_CB_COL_FURTHEST int
Value:0x03
Constants.FP_ChangeBarThickness int
Value:261
Constants.FP_ChangeBarColor int
Value:262
Constants.FP_FnFmt int
Value:283
Constants.FP_FnFirstNum int
Value:284
Constants.FP_FnCustNumString int
Value:285
Constants.FP_FnRefPrefix int
Value:286
Constants.FP_FnInstancePosition int
Value:287
Constants.FV_FN_POS_SUPER int
Value:0x00
Constants.FV_FN_POS_BASELINE int
Value:0x01
Constants.FV_FN_POS_SUB int
Value:0x02
Constants.FP_FnInstanceSuffix int
Value:288
175
CONSTANTS
CHAPTER 5 OBJECT REFERENCE
Constants.FP_FnHeightPerCol int
Value:289
Constants.FP_FnNumStyle int
Value:290
Constants.FV_FN_NUM_NUMERIC int
Value:0x00
Constants.FV_FN_NUM_ROMAN_UC int
Value:0x01
Constants.FV_FN_NUM_ROMAN_LC int
Value:0x02
Constants.FV_FN_NUM_ALPHA_UC int
Value:0x03
Constants.FV_FN_NUM_ALPHA_LC int
Value:0x04
Constants.FV_FN_NUM_CUSTOM int
Value:0x05
Constants.FV_FN_NUM_KANJI int
Value:0x06
Constants.FV_FN_NUM_ZENKAKU int
Value:0x07
Constants.FV_FN_NUM_ZENKAKU_UC int
Value:0x08
Constants.FV_FN_NUM_ZENKAKU_LC int
Value:0x09
Constants.FV_FN_NUM_KANJI_KAZU int
Value:0x0A
Constants.FV_FN_NUM_DAIJI int
Value:0x0B
Constants.FV_FN_NUM_FULL_WIDTH int
Value:0x0C
Constants.FV_FN_NUM_FULL_WIDTH_U int
C Value:0x0D
Constants.FV_FN_NUM_FULL_WIDTH_L int
C Value:0x0E
176
CONSTANTS
CHAPTER 5 OBJECT REFERENCE
Constants.FV_FN_NUM_CHINESE_NUME int
RIC Value:0x10
Constants.FP_FnNumberingPerPage int
Value:291
Constants.FP_FnRefPosition int
Value:292
Constants.FP_FnRefSuffix int
Value:293
Constants.FP_FnInstancePrefix int
Value:294
Constants.FP_FnNumComputeMethod int
Value:295
Constants.FP_TblFnFmt int
Value:315
Constants.FP_TblFnNumStyle int
Value:316
Constants.FP_TblFnCustNumString int
Value:317
Constants.FP_TblFnCellPosition int
Value:318
Constants.FP_TblFnCellSuffix int
Value:319
Constants.FP_TblFnCellPrefix int
Value:320
Constants.FP_TblFnPosition int
Value:321
Constants.FP_TblFnPrefix int
Value:322
Constants.FP_TblFnSuffix int
Value:323
Constants.FP_TblFnNumComputeMetho int
d Value:324
Constants.FP_Symbols int
Value:334
177
CONSTANTS
CHAPTER 5 OBJECT REFERENCE
Constants.FP_SymbolsList int
Value:335
Constants.FP_Variables int
Value:336
Constants.FP_Strings int
Value:337
Constants.FP_Numbers int
Value:338
Constants.FP_Functions int
Value:339
Constants.FP_HorizontalSpreadSmall int
Value:340
Constants.FP_HorizontalSpreadMed int
Value:341
Constants.FP_HorizontalSpreadLarge int
Value:342
Constants.FP_VerticalSpreadSmall int
Value:343
Constants.FP_VerticalSpreadMed int
Value:344
Constants.FP_VerticalSpreadLarge int
Value:345
Constants.FP_EqnIntegralSizeSmall int
Value:346
Constants.FP_EqnIntegralSizeMed int
Value:347
Constants.FP_EqnIntegralSizeLarge int
Value:348
Constants.FP_EqnSigmaSizeSmall int
Value:349
Constants.FP_EqnSigmaSizeMed int
Value:350
Constants.FP_EqnSigmaSizeLarge int
Value:351
178
CONSTANTS
CHAPTER 5 OBJECT REFERENCE
Constants.FP_EqnLevel1SizeSmall int
Value:352
Constants.FP_EqnLevel1SizeMed int
Value:353
Constants.FP_EqnLevel1SizeLarge int
Value:354
Constants.FP_EqnLevel2SizeSmall int
Value:355
Constants.FP_EqnLevel2SizeMed int
Value:356
Constants.FP_EqnLevel2SizeLarge int
Value:357
Constants.FP_EqnLevel3SizeSmall int
Value:358
Constants.FP_EqnLevel3SizeMed int
Value:359
Constants.FP_EqnLevel3SizeLarge int
Value:360
Constants.FP_ViewBorders int
Value:382
Constants.FP_ViewHotspotIndicators int
Value:2357
Constants.FP_ViewRulers int
Value:383
Constants.FP_ViewNoGraphics int
Value:384
Constants.FP_ViewPageScrolling int
Value:385
Constants.FV_SCROLL_VARIABLE int
Value:0
Constants.FV_SCROLL_HORIZONTAL int
Value:1
Constants.FV_SCROLL_VERTICAL int
Value:2
179
CONSTANTS
CHAPTER 5 OBJECT REFERENCE
Constants.FV_SCROLL_FACING int
Value:3
Constants.FP_ViewGridUnits int
Value:386
Constants.FP_Zoom int
Value:387
Constants.FV_NO_ZOOM_MANGLING int
Value:-1
Constants.FV_ZOOM_TO_FIT_TO_WIND int
OW Value:-2
Constants.FV_FIT_WINDOW_TO_PAGE int
Value:-3
Constants.FP_ViewTextSymbols int
Value:388
Constants.FP_ViewGrid int
Value:389
Constants.FP_ViewDisplayUnits int
Value:390
Constants.FP_TrackChangesOn int
Value:2819
Constants.FP_PreviewState int
Value:2820
Constants.FV_PREVIEW_OFF_TRACK_CH int
ANGE Value:0
Constants.FV_PREVIEW_ON_ORIGINAL int
Value:1
Constants.FV_PREVIEW_ON_FINAL int
Value:2
Constants.FP_ReviewerNameList int
Value:2825
Constants.FP_TrackChangesAddedColor int
Value:2826
Constants.FP_TrackChangesDeletedColor int
Value:2827
180
CONSTANTS
CHAPTER 5 OBJECT REFERENCE
Constants.FP_ViewRulerUnits int
Value:391
Constants.FP_SpotColorView int
Value:392
Constants.FP_SnapGridUnits int
Value:393
Constants.FP_SnapAngle int
Value:394
Constants.FP_ViewLinkBoundaries int
Value:395
Constants.FP_ViewFontSizeUnits int
Value:396
Constants.FP_LeftMasterPage int
Value:413
Constants.FP_RightMasterPage int
Value:414
Constants.FP_FirstBodyPageInDoc int
Value:415
Constants.FP_LastBodyPageInDoc int
Value:416
Constants.FP_FirstMasterPageInDoc int
Value:417
Constants.FP_LastMasterPageInDoc int
Value:418
Constants.FP_FirstRefPageInDoc int
Value:419
Constants.FP_LastRefPageInDoc int
Value:420
Constants.FP_HiddenPage int
Value:421
Constants.FP_MainFlowInDoc int
Value:422
Constants.FP_PrintStartPageName int
Value:439
181
CONSTANTS
CHAPTER 5 OBJECT REFERENCE
Constants.FP_PrintEndPageName int
Value:440
Constants.FP_PrintCols int
Value:441
Constants.FP_PrintRows int
Value:442
Constants.FP_PrintStartPage int
Value:443
Constants.FP_PrintStartPoint int
Value:444
Constants.FP_PrintOddPages int
Value:445
Constants.FP_PrintCollated int
Value:446
Constants.FP_PrintLowRes int
Value:447
Constants.FP_PrintThumbnails int
Value:448
Constants.FP_PrinterName int
Value:449
Constants.FP_PrintScale int
Value:450
Constants.FP_PrintFileName int
Value:451
Constants.FP_PrintDitavalFileName int
Value:2343
Constants.FP_PrintScope int
Value:452
Constants.FV_PR_ALL int
Value:1
Constants.FV_PR_RANGE int
Value:2
Constants.FP_PrintEndPage int
Value:453
182
CONSTANTS
CHAPTER 5 OBJECT REFERENCE
Constants.FP_PrintEndPoint int
Value:454
Constants.FP_PrintEvenPages int
Value:455
Constants.FP_PrintLastSheetFirst int
Value:456
Constants.FP_PrintRegistrationMarks int
Value:457
Constants.FP_PrintManualFeed int
Value:458
Constants.FP_PrintNumCopies int
Value:459
Constants.FP_PrintToFile int
Value:460
Constants.FP_PrintPaperWidth int
Value:461
Constants.FP_PrintPaperHeight int
Value:462
Constants.FP_PrintSeps int
Value:463
Constants.FP_SkipBlankSeps int
Value:464
Constants.FP_PrintImaging int
Value:465
Constants.FV_IMG_POSITIVE int
Value:0
Constants.FV_IMG_NEGATIVE int
Value:1
Constants.FP_PrintEmulsion int
Value:466
Constants.FV_EMUL_UP int
Value:0
Constants.FV_EMUL_DOWN int
Value:1
183
CONSTANTS
CHAPTER 5 OBJECT REFERENCE
Constants.FP_PrintBlankPages int
Value:467
Constants.FP_PrintTomboMarks int
Value:468
Constants.FP_PrintRegMarkDate int
Value:469
Constants.FP_TrapwiseCompatibility int
Value:495
Constants.FP_DownloadFonts int
Value:496
Constants.FP_PrintSpotBW int
Value:498
Constants.FV_PR_DOWNLOAD_NONE int
Value:1
Constants.FV_PR_DOWNLOAD_ALL int
Value:2
Constants.FV_PR_DOWNLOAD_ALL_BUT int
_STANDARD_13 Value:3
Constants.FV_PR_DOWNLOAD_ALL_BUT int
_STANDARD_35 Value:4
Constants.FP_PrintDownloadAsianFonts int
Value:501
Constants.FP_PrintDownloadTrueTypeAs int
Type1 Value:502
Constants.FP_GenerateAcrobatInfo int
Value:2250
Constants.FP_AcrobatBookmarkDisplayT int
ags Value:2251
Constants.FP_DocAcrobatDefaultsChang int
ed Value:2252
Constants.FP_DocAcrobatElements int
Value:2253
Constants.FP_DocAcrobatElementList int
Value:2254
184
CONSTANTS
CHAPTER 5 OBJECT REFERENCE
Constants.FP_DocAcrobatNoArticleThrea int
ds Value:2255
Constants.FP_DocAcrobatColumnArticle int
Threads Value:2256
Constants.FP_PDFAllNamedDestinations int
Value:2257
Constants.FP_PDFDestsMarked int
Value:2258
Constants.FP_PDFStructure int
Value:2259
Constants.FP_PDFDocInfo int
Value:2260
Constants.FP_PDFBookmark int
Value:2261
Constants.FP_FileInfoPacket int
Value:2262
Constants.FP_PDFJobOption int
Value:2263
Constants.FP_PDFOpenPage int
Value:2264
Constants.FP_PDFZoomType int
Value:2265
Constants.FV_PDFZoomNone int
Value:0
Constants.FV_PDFZoomDefault int
Value:1
Constants.FV_PDFZoomPage int
Value:2
Constants.FV_PDFZoomWidth int
Value:3
Constants.FV_PDFZoomHeight int
Value:4
Constants.FV_PDFZoomMaxValue int
Value:4
185
CONSTANTS
CHAPTER 5 OBJECT REFERENCE
Constants.FV_PDFRegistrationMarksNon int
e Value:0
Constants.FV_PDFRegistrationMarksWes int
tern Value:1
Constants.FV_PDFRegistrationMarksTom int
bo Value:2
Constants.FV_PDFRegistrationMarksMax int
Value:2
Constants.FP_PDFZoomFactor int
Value:2266
Constants.FP_PDFSeparateFiles int
Value:2267
Constants.FP_PDFRegistrationMarks int
Value:2268
Constants.FP_PDFPageWidth int
Value:2269
Constants.FP_PDFPageHeight int
Value:2270
Constants.FP_PDFPrintPageRange int
Value:2271
Constants.FP_PDFStartPage int
Value:2272
Constants.FP_PDFEndPage int
Value:2273
Constants.FP_PDFConvertCMYKtoRGB int
Value:2274
Constants.FP_PDFBookmarksOpenLevel int
Value:2275
Constants.FP_PDFDistillerAbsent int
Value:2276
Constants.FP_PDFJobOptionsAbsent int
Value:2277
Constants.FP_PDFViewPDF int
Value:2278
186
CONSTANTS
CHAPTER 5 OBJECT REFERENCE
Constants.FP_PDFGenerateForReview int
Value:2279
Constants.FV_PDFBookmarksOpenDefau int
ltLevel Value:-1
Constants.FV_PDFBookmarksOpenAllLev int
els Value:-2
Constants.FV_PDFBookmarksOpenNone int
Level Value:-3
Constants.FP_MaxFirstIndent int
Value:472
Constants.FP_MinFirstIndent int
Value:473
Constants.FP_MaxLeftIndent int
Value:474
Constants.FP_MinLeftIndent int
Value:475
Constants.FP_MaxRightIndent int
Value:476
Constants.FP_MinRightIndent int
Value:477
Constants.FP_MaxSpaceAbove int
Value:478
Constants.FP_MinSpaceAbove int
Value:479
Constants.FP_MaxSpaceBelow int
Value:480
Constants.FP_MinSpaceBelow int
Value:481
Constants.FP_MaxLeading int
Value:482
Constants.FP_MinLeading int
Value:483
Constants.FP_MaxFontSize int
Value:484
187
CONSTANTS
CHAPTER 5 OBJECT REFERENCE
Constants.FP_MinFontSize int
Value:485
Constants.FP_MaxSpread int
Value:486
Constants.FP_MinSpread int
Value:487
Constants.FP_MaxTabPosition int
Value:701
Constants.FP_MinTabPosition int
Value:702
Constants.FP_MaxLeftMargin int
Value:703
Constants.FP_MinLeftMargin int
Value:704
Constants.FP_MaxRightMargin int
Value:705
Constants.FP_MinRightMargin int
Value:706
Constants.FP_MaxTopMargin int
Value:707
Constants.FP_MinTopMargin int
Value:708
Constants.FP_MaxBottomMargin int
Value:709
Constants.FP_MinBottomMargin int
Value:710
Constants.FP_MaxStretch int
Value:711
Constants.FP_MinStretch int
Value:712
Constants.FP_MagicMarker int
Value:488
Constants.FP_XmlVersion int
Value:2800
188
CONSTANTS
CHAPTER 5 OBJECT REFERENCE
Constants.FP_XmlEncoding int
Value:2801
Constants.FP_XmlStandAlone int
Value:2802
Constants.FV_XML_STANDALONE_YES int
Value:1
Constants.FV_XML_STANDALONE_NO int
Value:2
Constants.FV_XML_STANDALONE_NONE int
Value:3
Constants.FV_XML_STANDALONE_NODE int
C Value:4
Constants.FP_XmlStyleSheet int
Value:2803
Constants.FP_XmlStyleSheetList int
Value:2804
Constants.FP_XmlUseBOM int
Value:2805
Constants.FV_XML_USEBOM_YES int
Value:1
Constants.FV_XML_USEBOM_NO int
Value:2
Constants.FV_XML_USEBOM_UTF8 int
Value:3
Constants.FV_XML_USEBOM_UTF16BE int
Value:4
Constants.FV_XML_USEBOM_UTF16LE int
Value:5
Constants.FV_XML_USEBOM_UTF32BE int
Value:6
Constants.FV_XML_USEBOM_UTF32LE int
Value:7
Constants.FP_XmlWellFormed int
Value:2806
189
CONSTANTS
CHAPTER 5 OBJECT REFERENCE
Constants.FV_XML_WELLFORMED_YES int
Value:1
Constants.FV_XML_WELLFORMED_NO int
Value:2
Constants.FP_XmlFileEncoding int
Value:2809
Constants.FP_XmlDocType int
Value:2810
Constants.FP_XmlPublicId int
Value:2811
Constants.FP_XmlSystemId int
Value:2812
Constants.FP_XmlLock int
Value:2841
Constants.FP_ServerUrl int
Value:2807
Constants.FP_ServerState int
Value:2808
Constants.FV_URL_CHECKED_IN int
Value:1
Constants.FV_URL_CHECKED_OUT int
Value:2
Constants.FP_KeyCatalog int
Value:2856
Constants.FP_KeyCatalogType int
Value:2857
Constants.FP_SpecifiedKeyCatalog int
Value:2858
Constants.FP_NextOpenBookInSession int
Value:490
Constants.FP_FirstComponentInBook int
Value:491
Constants.FP_BookIsModified int
Value:492
190
CONSTANTS
CHAPTER 5 OBJECT REFERENCE
Constants.FP_FirstSelectedComponentIn int
Book Value:493
Constants.FP_BookDontUpdateReferenc int
es Value:494
Constants.FP_BookIsViewOnly int
Value:497
Constants.FP_BookIsSelected int
Value:499
Constants.FP_TypeOfDisplayText int
Value:500
Constants.FV_BK_FILENAME int
Value:1
Constants.FV_BK_TEXT int
Value:2
Constants.FP_BookParent int
Value:515
Constants.FP_ExtractTags int
Value:516
Constants.FP_GenerateInclude int
Value:517
Constants.FP_ImportFmtInclude int
Value:518
Constants.FP_PrintInclude int
Value:519
Constants.FP_BookComponentIsGenerat int
able Value:520
Constants.FP_PagePrefix int
Value:521
Constants.FP_PageSuffix int
Value:522
Constants.FP_PageSide int
Value:523
Constants.FV_BK_START_FROM_FILE int
Value:0x01
191
CONSTANTS
CHAPTER 5 OBJECT REFERENCE
Constants.FV_BK_START_NEXT_AVAILAB int
LE Value:0x02
Constants.FV_BK_START_LEFT int
Value:0x03
Constants.FV_BK_START_RIGHT int
Value:0x04
Constants.FP_PageNumComputeMethod int
Value:524
Constants.FP_PgfNumComputeMethod int
Value:525
Constants.FP_PrevComponentInBook int
Value:526
Constants.FP_NextComponentInBook int
Value:527
Constants.FP_InsertLinks int
Value:528
Constants.FP_ComponentIsSelected int
Value:529
Constants.FP_NextSelectedComponentIn int
Book Value:530
Constants.FP_BookComponentType int
Value:531
Constants.FV_BK_TOC int
Value:0
Constants.FV_BK_LIST_FIGURE int
Value:1
Constants.FV_BK_LIST_TABLE int
Value:2
Constants.FV_BK_LIST_PGF int
Value:3
Constants.FV_BK_LIST_MARKER int
Value:4
Constants.FV_BK_LIST_MARKER_ALPHA int
Value:5
192
CONSTANTS
CHAPTER 5 OBJECT REFERENCE
Constants.FV_BK_LIST_PGF_ALPHA int
Value:6
Constants.FV_BK_INDEX_STAN int
Value:7
Constants.FV_BK_INDEX_AUTHOR int
Value:8
Constants.FV_BK_INDEX_SUBJECT int
Value:9
Constants.FV_BK_INDEX_MARKER int
Value:10
Constants.FV_BK_LIST_FORMATS int
Value:11
Constants.FV_BK_LIST_REFERENCES int
Value:12
Constants.FV_BK_INDEX_FORMATS int
Value:13
Constants.FV_BK_INDEX_REFERENCES int
Value:14
Constants.FV_BK_NUM_BOOK_LIST int
Value:15
Constants.FV_BK_NOT_GENERATABLE int
Value:16
Constants.FP_ComponentDisplayText int
Value:532
Constants.FP_FirstComponentInBookCo int
mponent Value:2324
Constants.FP_BookComponentParent int
Value:2325
Constants.FP_ExcludeBookComponent int
Value:2326
Constants.FP_BookComponentTemplate int
Path Value:2327
Constants.FP_BookComponentTitle int
Value:2328
193
CONSTANTS
CHAPTER 5 OBJECT REFERENCE
Constants.FP_ComponentType int
Value:2329
Constants.FP_ComponentIsDitaMap int
Value:2331
Constants.FP_CorrespondingXmlPath int
Value:1158
Constants.FV_BK_GENERAL int
Value:0x1
Constants.FV_BK_FOLDER int
Value:0x2
Constants.FV_BK_BOOK int
Value:0x4
Constants.FV_BK_FM int
Value:0x8
Constants.FV_BK_MIF int
Value:0x10
Constants.FV_BK_XML int
Value:0x20
Constants.FV_BK_GROUP int
Value:0x40
Constants.FV_BK_DITAMAP int
Value:0x80
Constants.FV_BK_BOOKMAP int
Value:0x100
Constants.FV_BK_FILE int
Value:0x200
Constants.FP_NextBookComponentInDF int
SOrder Value:2333
Constants.FP_BookComponentFileType int
Value:2339
Constants.FP_PrevBookComponentInDF int
SOrder Value:2340
Constants.FP_BookComponentIsFolder int
WithTemplate Value:2341
194
CONSTANTS
CHAPTER 5 OBJECT REFERENCE
Constants.FP_BookComponentIsFolder int
WithoutTemplate Value:2342
Constants.FP_XmlApplicationForBookCo int
mponent Value:2330
Constants.FP_BookComponentSequence int
Level Value:2353
Constants.FP_DocSequenceLevel int
Value:2356
Constants.FA_COMPONENT_MOVEUP int
Value:1
Constants.FA_COMPONENT_MOVEDOW int
N Value:2
Constants.FA_COMPONENT_PROMOTE int
Value:3
Constants.FA_COMPONENT_DEMOTE int
Value:4
Constants.FP_PgfAlignment int
Value:547
Constants.FV_PGF_LEFT int
Value:0x01
Constants.FV_PGF_RIGHT int
Value:0x02
Constants.FV_PGF_CENTER int
Value:0x03
Constants.FV_PGF_JUSTIFIED int
Value:0x04
Constants.FP_AutoNumString int
Value:548
Constants.FP_AutoNumChar int
Value:549
Constants.FP_LetterSpace int
Value:550
Constants.FP_KeepWithPrev int
Value:551
195
CONSTANTS
CHAPTER 5 OBJECT REFERENCE
Constants.FP_NextTag int
Value:552
Constants.FP_SpaceAbove int
Value:553
Constants.FP_TopSeparator int
Value:554
Constants.FP_LeftIndent int
Value:555
Constants.FirstInlineComponentInDoc int
Value:2897
Constants.FP_OptSpace int
Value:557
Constants.FP_Leading int
Value:558
Constants.FP_AdjHyphens int
Value:559
Constants.FP_HyphMinSuffix int
Value:560
Constants.FP_BlockLines int
Value:561
Constants.FP_PgfIsAutoNum int
Value:562
Constants.FP_NumAtEnd int
Value:563
Constants.FP_Hyphenate int
Value:564
Constants.FP_KeepWithNext int
Value:565
Constants.FP_UseNextTag int
Value:566
Constants.FP_Start int
Value:567
Constants.FV_PGF_ANYWHERE int
Value:0x00
196
CONSTANTS
CHAPTER 5 OBJECT REFERENCE
Constants.FV_PGF_TOP_OF_COL int
Value:0x01
Constants.FV_PGF_TOP_OF_PAGE int
Value:0x02
Constants.FV_PGF_TOP_OF_LEFT_PAGE int
Value:0x03
Constants.FV_PGF_TOP_OF_RIGHT_PAG int
E Value:0x04
Constants.FP_SpaceBelow int
Value:568
Constants.FP_BottomSeparator int
Value:569
Constants.FP_RightIndent int
Value:570
Constants.FP_MinSpace int
Value:571
Constants.FP_MaxSpace int
Value:572
Constants.FP_NumTabs int
Value:573
Constants.FP_Tabs int
Value:574
Constants.FP_HyphMinPrefix int
Value:575
Constants.FP_HyphMinWord int
Value:576
Constants.FP_Language int
Value:577
Constants.FV_LANG_NOLANGUAGE int
Value:0x00
Constants.FV_LANG_ENGLISH int
Value:0x01
Constants.FV_LANG_BRITISH int
Value:0x02
197
CONSTANTS
CHAPTER 5 OBJECT REFERENCE
Constants.FV_LANG_GERMAN int
Value:0x03
Constants.FV_LANG_SWISS_GERMAN int
Value:0x04
Constants.FV_LANG_FRENCH int
Value:0x05
Constants.FV_LANG_CANADIAN_FRENC int
H Value:0x06
Constants.FV_LANG_SPANISH int
Value:0x07
Constants.FV_LANG_CATALAN int
Value:0x08
Constants.FV_LANG_ITALIAN int
Value:0x09
Constants.FV_LANG_PORTUGUESE int
Value:0x0A
Constants.FV_LANG_BRAZILIAN int
Value:0x0B
Constants.FV_LANG_DANISH int
Value:0x0C
Constants.FV_LANG_DUTCH int
Value:0x0D
Constants.FV_LANG_NORWEGIAN int
Value:0x0E
Constants.FV_LANG_NYNORSK int
Value:0x0F
Constants.FV_LANG_FINNISH int
Value:0x10
Constants.FV_LANG_SWEDISH int
Value:0x11
Constants.FV_LANG_JAPANESE int
Value:0x12
Constants.FV_LANG_TRADITIONAL_CHIN int
ESE Value:0x13
198
CONSTANTS
CHAPTER 5 OBJECT REFERENCE
Constants.FV_LANG_SIMPLIFIED_CHINES int
E Value:0x14
Constants.FV_LANG_KOREAN int
Value:0x15
Constants.FV_LANG_NEW_GERMAN int
Value:0x16
Constants.FV_LANG_NEW_SWISS_GERM int
AN Value:0x17
Constants.FV_LANG_NEW_DUTCH int
Value:0x18
Constants.FV_LANG_GREEK int
Value:0x19
Constants.FV_LANG_RUSSIAN int
Value:0x1A
Constants.FV_LANG_CZECH int
Value:0x1B
Constants.FV_LANG_POLISH int
Value:0x1C
Constants.FV_LANG_HUNGARIAN int
Value:0x1D
Constants.FV_LANG_TURKISH int
Value:0x1E
Constants.FV_LANG_SLOVAK int
Value:0x1F
Constants.FV_LANG_SLOVENIAN int
Value:0x20
Constants.FV_LANG_BULGARIAN int
Value:0x21
Constants.FV_LANG_CROATIAN int
Value:0x22
Constants.FV_LANG_ESTONIAN int
Value:0x23
Constants.FV_LANG_LATVIAN int
Value:0x24
199
CONSTANTS
CHAPTER 5 OBJECT REFERENCE
Constants.FV_LANG_LITHUANIAN int
Value:0x25
Constants.FV_LANG_ROMANIAN int
Value:0x26
Constants.FV_LANG_NUM int
Value:0x27
Constants.FP_RunInSeparator int
Value:578
Constants.FP_Placement int
Value:579
Constants.FV_PGF_SIDEBODY int
Value:0
Constants.FV_PGF_SIDEHEAD_TOP int
Value:1
Constants.FV_PGF_SIDEHEAD_FIRST_BA int
SELINE Value:2
Constants.FV_PGF_SIDEHEAD_LAST_BAS int
ELINE Value:3
Constants.FV_PGF_RUN_IN int
Value:4
Constants.FV_PGF_STRADDLE int
Value:5
Constants.FV_PGF_STRADDLE_NORMAL int
_ONLY Value:6
Constants.FP_NextPgfFmtInDoc int
Value:580
Constants.FP_CellTopMargin int
Value:581
Constants.FP_CellBottomMargin int
Value:582
Constants.FP_CellLeftMargin int
Value:583
Constants.FP_CellRightMargin int
Value:584
200
CONSTANTS
CHAPTER 5 OBJECT REFERENCE
Constants.FP_CellVAlignment int
Value:585
Constants.FV_PGF_V_ALIGN_TOP int
Value:0
Constants.FV_PGF_V_ALIGN_MIDDLE int
Value:1
Constants.FV_PGF_V_ALIGN_BOTTOM int
Value:2
Constants.FP_CellMarginsFixed int
Value:586
Constants.FV_PGF_FIXED_L_MARGIN int
Value:0x01
Constants.FV_PGF_FIXED_B_MARGIN int
Value:0x02
Constants.FV_PGF_FIXED_R_MARGIN int
Value:0x04
Constants.FV_PGF_FIXED_T_MARGIN int
Value:0x08
Constants.FP_LineSpacing int
Value:587
Constants.FV_PGF_FIXED int
Value:0x00
Constants.FV_PGF_PROPORTIONAL int
Value:0x01
Constants.FV_PGF_FLOATING int
Value:0x02
Constants.FP_Locked int
Value:588
Constants.FP_AcrobatLevel int
Value:589
Constants.FP_PDFStructureLevel int
Value:600
Constants.FP_FormatOverride int
Value:590
201
CONSTANTS
CHAPTER 5 OBJECT REFERENCE
Constants.FP_MinJRomSpace int
Value:591
Constants.FP_OptJRomSpace int
Value:592
Constants.FP_MaxJRomSpace int
Value:593
Constants.FP_MinJLetSpace int
Value:594
Constants.FP_OptJLetSpace int
Value:595
Constants.FP_MaxJLetSpace int
Value:596
Constants.FP_YakumonoType int
Value:597
Constants.FV_FLOATING_YAKUMONO int
Value:0x00
Constants.FV_MONOSPACE_YAKUMONO int
Value:0x01
Constants.FV_FIXED_YAKUMONO int
Value:0x02
Constants.FP_DialogEncodingName int
Value:598
Constants.FP_FMInterfaceEncodingNam int
e Value:599
Constants.FP_CharTag int
Value:602
Constants.FP_NextCharFmtInDoc int
Value:603
Constants.FP_FontFamily int
Value:604
Constants.FP_FontVariation int
Value:605
Constants.FP_FontWeight int
Value:606
202
CONSTANTS
CHAPTER 5 OBJECT REFERENCE
Constants.FP_FontAngle int
Value:607
Constants.FP_Underlining int
Value:608
Constants.FV_CB_NO_UNDERLINE int
Value:0
Constants.FV_CB_SINGLE_UNDERLINE int
Value:1
Constants.FV_CB_DOUBLE_UNDERLINE int
Value:2
Constants.FV_CB_NUMERIC_UNDERLINE int
Value:3
Constants.FP_Strikethrough int
Value:609
Constants.FP_Overline int
Value:610
Constants.FP_ChangeBar int
Value:611
Constants.FP_Outline int
Value:612
Constants.FP_Shadow int
Value:613
Constants.FP_PairKern int
Value:614
Constants.FP_FontSize int
Value:615
Constants.FP_KernX int
Value:616
Constants.FP_KernY int
Value:617
Constants.FP_Spread int
Value:618
Constants.FP_Capitalization int
Value:619
203
CONSTANTS
CHAPTER 5 OBJECT REFERENCE
Constants.FV_CAPITAL_CASE_NORM int
Value:0
Constants.FV_CAPITAL_CASE_SMALL int
Value:1
Constants.FV_CAPITAL_CASE_LOWER int
Value:2
Constants.FV_CAPITAL_CASE_UPPER int
Value:3
Constants.FP_Position int
Value:620
Constants.FV_POS_NORM int
Value:0
Constants.FV_POS_SUPER int
Value:1
Constants.FV_POS_SUB int
Value:2
Constants.FP_BkColor int
Value:992
Constants.FP_ReviewerName int
Value:993
Constants.FP_ReviewTime int
Value:994
Constants.FP_UseFontFamily int
Value:621
Constants.FP_UseFontVariation int
Value:622
Constants.FP_UseFontWeight int
Value:623
Constants.FP_UseFontAngle int
Value:624
Constants.FP_UseUnderlining int
Value:625
Constants.FP_UseStrikethrough int
Value:626
204
CONSTANTS
CHAPTER 5 OBJECT REFERENCE
Constants.FP_UseOverline int
Value:627
Constants.FP_UseChangeBar int
Value:628
Constants.FP_UseOutline int
Value:629
Constants.FP_UseShadow int
Value:630
Constants.FP_UsePairKern int
Value:631
Constants.FP_UseFontSize int
Value:632
Constants.FP_UseKernX int
Value:633
Constants.FP_UseKernY int
Value:634
Constants.FP_UseSpread int
Value:635
Constants.FP_UseCapitalization int
Value:636
Constants.FP_UsePosition int
Value:637
Constants.FP_UseColor int
Value:638
Constants.FP_UseBkColor int
Value:991
Constants.FP_FontPlatformName int
Value:639
Constants.FP_FontPostScriptName int
Value:640
Constants.FP_FontPanoseName int
Value:641
Constants.FP_FontEncodingName int
Value:642
205
CONSTANTS
CHAPTER 5 OBJECT REFERENCE
Constants.FP_Stretch int
Value:643
Constants.FP_UseStretch int
Value:644
Constants.FP_UseLanguage int
Value:645
Constants.FP_WesternFontPlatformNam int
e Value:646
Constants.FP_WesternFontPostScriptNa int
me Value:647
Constants.FP_WesternFontPanoseName int
Value:648
Constants.FP_Tsume int
Value:649
Constants.FP_UseTsume int
Value:650
Constants.FV_TAB_LEFT int
Value:0x1
Constants.FV_TAB_CENTER int
Value:0x2
Constants.FV_TAB_RIGHT int
Value:0x3
Constants.FV_TAB_DECIMAL int
Value:0x4
Constants.FV_TAB_RELATIVE_LEFT int
Value:0x5
Constants.FV_TAB_RELATIVE_CENTER int
Value:0x6
Constants.FV_TAB_RELATIVE_RIGHT int
Value:0x7
Constants.FV_TAB_RELATIVE_DECIMAL int
Value:0x8
Constants.FP_PageNum int
Value:687
206
CONSTANTS
CHAPTER 5 OBJECT REFERENCE
Constants.FP_PointPageNum int
Value:688
Constants.FP_PageBackground int
Value:689
Constants.FV_BGD_DEFAULT int
Value:0x00
Constants.FV_BGD_NONE int
Value:0x01
Constants.FV_BGD_OTHER int
Value:0x02
Constants.FP_MasterPage int
Value:690
Constants.FP_PageWidth int
Value:691
Constants.FP_PageHeight int
Value:692
Constants.FP_PagePrev int
Value:693
Constants.FP_PageNext int
Value:694
Constants.FP_PageFrame int
Value:695
Constants.FP_PageNumString int
Value:696
Constants.FP_PageIsRecto int
Value:697
Constants.FP_NextPgfInDoc int
Value:716
Constants.FP_NextPgfInFlow int
Value:717
Constants.FP_PrevPgfInFlow int
Value:718
Constants.FP_PgfNumber int
Value:719
207
CONSTANTS
CHAPTER 5 OBJECT REFERENCE
Constants.FP_PgfSpellChecked int
Value:720
Constants.FP_PgfSplit int
Value:721
Constants.FP_PgfMarkedForNamedDesti int
nation Value:722
Constants.FP_BorderWidth int
Value:740
Constants.FP_Fill int
Value:741
Constants.FV_FILL_BLACK int
Value:0
Constants.FV_FILL_WHITE int
Value:7
Constants.FV_FILL_CLEAR int
Value:15
Constants.FP_Pen int
Value:742
Constants.FP_HeadArrow int
Value:743
Constants.FP_TailArrow int
Value:744
Constants.FP_ArrowTipAngle int
Value:745
Constants.FP_ArrowBaseAngle int
Value:746
Constants.FP_ArrowScaleFactor int
Value:747
Constants.FP_ArrowLength int
Value:748
Constants.FP_ArrowType int
Value:749
Constants.FV_ARROW_STICK int
Value:0x1
208
CONSTANTS
CHAPTER 5 OBJECT REFERENCE
Constants.FV_ARROW_HOLLOW int
Value:0x2
Constants.FV_ARROW_FILLED int
Value:0x3
Constants.FP_ArrowScaleHead int
Value:750
Constants.FP_Color int
Value:751
Constants.FP_Dash int
Value:752
Constants.FP_LineCap int
Value:753
Constants.FV_CAP_BUTT int
Value:0x00
Constants.FV_CAP_ROUND int
Value:0x01
Constants.FV_CAP_SQUARE int
Value:0x02
Constants.FP_RunaroundGap int
Value:754
Constants.FP_TintPercent int
Value:755
Constants.FP_Overprint int
Value:756
Constants.FV_KNOCKOUT int
Value:0x00
Constants.FV_OVERPRINT int
Value:0x01
Constants.FV_FROMCOLOR int
Value:0x02
Constants.FP_UseBorderWidth int
Value:3001
Constants.FP_UseFill int
Value:3002
209
CONSTANTS
CHAPTER 5 OBJECT REFERENCE
Constants.FP_UsePen int
Value:3003
Constants.FP_UseRunaroundGap int
Value:3004
Constants.FP_UseTintPercent int
Value:3005
Constants.FP_UseOverprint int
Value:3006
Constants.FP_UseAngle int
Value:3007
Constants.FP_UseLocX int
Value:3008
Constants.FP_UseLocY int
Value:3009
Constants.FP_UseWidth int
Value:3010
Constants.FP_UseHeight int
Value:3011
Constants.FP_UseRunaround int
Value:3012
Constants.FP_UseAnchorType int
Value:3013
Constants.FP_UseAFrameIsFloating int
Value:3014
Constants.FP_UseAFrameIsCropped int
Value:3015
Constants.FP_UseSideOffset int
Value:3016
Constants.FP_UseBaselineOffset int
Value:3017
Constants.FP_UseAlignment int
Value:3018
Constants.FP_UseNumColumns int
Value:3019
210
CONSTANTS
CHAPTER 5 OBJECT REFERENCE
Constants.FP_UseColGapWidth int
Value:3020
Constants.FP_UseSideHeadWidth int
Value:3021
Constants.FP_UseSideHeadGap int
Value:3022
Constants.FP_UseTheta int
Value:3023
Constants.FP_UseDTheta int
Value:3024
Constants.FP_UseTextLineType int
Value:3025
Constants.FP_UseMathSize int
Value:3026
Constants.FP_UseInsetDpi int
Value:3027
Constants.FP_UseColumnsAreBalanced int
Value:3028
Constants.FP_UseSideHeadPlacement int
Value:3029
Constants.FP_UseRadius int
Value:3030
Constants.FP_UseFlowIsAutoConnect int
Value:3031
Constants.FP_UseFlowIsPostScript int
Value:3032
Constants.FP_FirstGraphicsFmtInDoc int
Value:3101
Constants.FP_NextGraphicsFmtInDoc int
Value:3102
Constants.FP_StyleTag int
Value:770
Constants.FP_GraphicIsSelected int
Value:771
211
CONSTANTS
CHAPTER 5 OBJECT REFERENCE
Constants.FP_GraphicCantBeSelected int
Value:772
Constants.FP_GraphicIsButton int
Value:773
Constants.FP_FrameParent int
Value:774
Constants.FP_PrevGraphicInFrame int
Value:775
Constants.FP_NextGraphicInFrame int
Value:776
Constants.FP_GroupParent int
Value:777
Constants.FP_PrevGraphicInGroup int
Value:778
Constants.FP_NextGraphicInGroup int
Value:779
Constants.FP_Angle int
Value:780
Constants.FP_LocX int
Value:781
Constants.FP_LocY int
Value:782
Constants.FP_Width int
Value:783
Constants.FP_Height int
Value:784
Constants.FP_NextSelectedGraphicInDoc int
Value:785
Constants.FP_NextGraphicInDoc int
Value:786
Constants.FP_Runaround int
Value:787
Constants.FV_TR_NONE int
Value:0x01
212
CONSTANTS
CHAPTER 5 OBJECT REFERENCE
Constants.FV_TR_CONTOUR int
Value:0x02
Constants.FV_TR_BBOX int
Value:0x03
Constants.FP_DesktopX int
Value:788
Constants.FP_DesktopY int
Value:789
Constants.FP_DesktopWidth int
Value:790
Constants.FP_DesktopHeight int
Value:791
Constants.FP_IsHotspot int
Value:2875
Constants.FP_HotspotCmdStr int
Value:2876
Constants.FP_HotspotTitle int
Value:2877
Constants.FP_FirstGraphicInGroup int
Value:807
Constants.FP_LastGraphicInGroup int
Value:808
Constants.FP_DTheta int
Value:830
Constants.FP_Theta int
Value:831
Constants.FP_InsetEditor int
Value:850
Constants.FP_InsetUpdater int
Value:851
Constants.FP_InsetFile int
Value:852
Constants.FP_InsetFileOrigName int
Value:2814
213
CONSTANTS
CHAPTER 5 OBJECT REFERENCE
Constants.FP_InsetDpi int
Value:853
Constants.FP_InsetIsFixedSize int
Value:854
Constants.FP_InsetIsFlippedSideways int
Value:855
Constants.FP_InsetIsInverted int
Value:856
Constants.FP_InsetRasterDpi int
Value:857
Constants.FP_INSETinfo int
Value:858
Constants.FP_InsetPosterIsExternal int
Value:2821
Constants.FP_InsetPosterFile int
Value:2822
Constants.FP_InsetSaveDIBFacetToFile int
Value:2823
Constants.FP_InsetPosterFileOrigName int
Value:2824
Constants.FP_InsetSaveFacetToFile int
Value:2839
Constants.FP_InsetU3dAnimationList int
Value:2844
Constants.FP_InsetU3dPartList int
Value:2845
Constants.FP_InsetU3dViewList int
Value:2846
Constants.FP_InsetCuePointList int
Value:2354
Constants.FP_InsetLinkToText int
Value:2355
Constants.FP_MathFullForm int
Value:865
214
CONSTANTS
CHAPTER 5 OBJECT REFERENCE
Constants.FP_MathSize int
Value:866
Constants.FV_MATH_MEDIUM int
Value:0
Constants.FV_MATH_SMALL int
Value:1
Constants.FV_MATH_LARGE int
Value:2
Constants.FP_AnchorType int
Value:875
Constants.FV_ANCHOR_INLINE int
Value:1
Constants.FV_ANCHOR_TOP int
Value:2
Constants.FV_ANCHOR_BELOW int
Value:3
Constants.FV_ANCHOR_BOTTOM int
Value:4
Constants.FV_ANCHOR_SUBCOL_LEFT int
Value:5
Constants.FV_ANCHOR_SUBCOL_RIGHT int
Value:6
Constants.FV_ANCHOR_SUBCOL_NEARE int
ST Value:7
Constants.FV_ANCHOR_SUBCOL_FARTH int
EST Value:8
Constants.FV_ANCHOR_SUBCOL_INSIDE int
Value:9
Constants.FV_ANCHOR_SUBCOL_OUTSI int
DE Value:10
Constants.FV_ANCHOR_TEXTFRAME_LEF int
T Value:11
Constants.FV_ANCHOR_TEXTFRAME_RI int
GHT Value:12
215
CONSTANTS
CHAPTER 5 OBJECT REFERENCE
Constants.FV_ANCHOR_TEXTFRAME_NE int
AREST Value:13
Constants.FV_ANCHOR_TEXTFRAME_FA int
RTHEST Value:14
Constants.FV_ANCHOR_TEXTFRAME_INS int
IDE Value:15
Constants.FV_ANCHOR_TEXTFRAME_OU int
TSIDE Value:16
Constants.FV_ANCHOR_RUN_INTO_PAR int
AGRAPH Value:17
Constants.FP_AFrameIsFloating int
Value:876
Constants.FP_SideOffset int
Value:877
Constants.FP_AFrameIsCropped int
Value:878
Constants.FP_TextLoc int
Value:879
Constants.FP_PageFramePage int
Value:880
Constants.FP_BaselineOffset int
Value:881
Constants.FP_FirstGraphicInFrame int
Value:882
Constants.FP_LastGraphicInFrame int
Value:883
Constants.FP_PrevAFrame int
Value:884
Constants.FP_NextAFrame int
Value:885
Constants.FP_Alignment int
Value:886
Constants.FV_ALIGN_LEFT int
Value:0
216
CONSTANTS
CHAPTER 5 OBJECT REFERENCE
Constants.FV_ALIGN_CENTER int
Value:1
Constants.FV_ALIGN_RIGHT int
Value:2
Constants.FV_ALIGN_INSIDE int
Value:3
Constants.FV_ALIGN_OUTSIDE int
Value:4
Constants.FP_MifFileEntity int
Value:2828
Constants.FP_MifFileName int
Value:2829
Constants.FP_MifFileOrigFormat int
Value:2878
Constants.FP_PolyIsBezier int
Value:906
Constants.FP_NumPoints int
Value:907
Constants.FP_Points int
Value:908
Constants.FP_RectangleIsSmoothed int
Value:929
Constants.FP_Radius int
Value:950
Constants.FP_FirstPgf int
Value:972
Constants.FP_LastPgf int
Value:973
Constants.FP_FirstAFrame int
Value:974
Constants.FP_LastAFrame int
Value:975
Constants.FP_FirstFn int
Value:976
217
CONSTANTS
CHAPTER 5 OBJECT REFERENCE
Constants.FP_LastFn int
Value:977
Constants.FP_FirstCell int
Value:978
Constants.FP_LastCell int
Value:979
Constants.FP_PrevTextFrameInFlow int
Value:980
Constants.FP_NextTextFrameInFlow int
Value:981
Constants.FP_Flow int
Value:982
Constants.FP_NumColumns int
Value:984
Constants.FP_ColGapWidth int
Value:985
Constants.FP_FirstSubCol int
Value:986
Constants.FP_LastSubCol int
Value:987
Constants.FP_LineSpacingFactor int
Value:988
Constants.FP_PgfSpacingFactor int
Value:989
Constants.FP_CellMarginSpacingDelta int
Value:990
Constants.FP_SideHeadPlacement int
Value:1171
Constants.FV_SH_LEFT int
Value:0x00
Constants.FV_SH_RIGHT int
Value:0x01
Constants.FV_SH_INSIDE int
Value:0x02
218
CONSTANTS
CHAPTER 5 OBJECT REFERENCE
Constants.FV_SH_OUTSIDE int
Value:0x03
Constants.FP_SideHeadWidth int
Value:1172
Constants.FP_SideHeadGap int
Value:1173
Constants.FP_ColumnsAreBalanced int
Value:1175
Constants.FP_InTextObj int
Value:1000
Constants.FP_InTextFrame int
Value:1001
Constants.FP_FnNum int
Value:1002
Constants.FP_NextFnInDoc int
Value:1003
Constants.FP_PrevFn int
Value:1004
Constants.FP_NextFn int
Value:1005
Constants.FP_FnAnchorString int
Value:1006
Constants.FP_OldTypeNum int
Value:1024
Constants.FP_MarkerText int
Value:1025
Constants.FP_NextMarkerInDoc int
Value:1026
Constants.FP_MarkerTypeId int
Value:1027
Constants.FP_NextMarkerTypeInDoc int
Value:1028
Constants.FP_InvariantName int
Value:1029
219
CONSTANTS
CHAPTER 5 OBJECT REFERENCE
Constants.FP_Public int
Value:1030
Constants.FP_Transient int
Value:1031
Constants.FP_Required int
Value:1032
Constants.FP_NextVarInDoc int
Value:1046
Constants.FP_VarFmt int
Value:1047
Constants.FP_SystemVar int
Value:1049
Constants.FV_VAR_USER_VARIABLE int
Value:0
Constants.FV_VAR_CURRENT_PAGE_NU int
M Value:1
Constants.FV_VAR_PAGE_COUNT int
Value:2
Constants.FV_VAR_CURRENT_DATE_LON int
G Value:3
Constants.FV_VAR_CURRENT_DATE_SHO int
RT Value:4
Constants.FV_VAR_MODIFICATION_DAT int
E_LONG Value:5
Constants.FV_VAR_MODIFICATION_DAT int
E_SHORT Value:6
Constants.FV_VAR_CREATION_DATE_LO int
NG Value:7
Constants.FV_VAR_CREATION_DATE_SH int
ORT Value:8
Constants.FV_VAR_FILE_NAME_LONG int
Value:9
Constants.FV_VAR_FILE_NAME_SHORT int
Value:10
220
CONSTANTS
CHAPTER 5 OBJECT REFERENCE
Constants.FV_VAR_HEADER_FOOTER_1 int
Value:11
Constants.FV_VAR_HEADER_FOOTER_2 int
Value:12
Constants.FV_VAR_HEADER_FOOTER_3 int
Value:13
Constants.FV_VAR_HEADER_FOOTER_4 int
Value:14
Constants.FV_VAR_TABLE_CONTINUATIO int
N Value:15
Constants.FV_VAR_TABLE_SHEET int
Value:16
Constants.FV_VAR_HEADER_FOOTER_5 int
Value:19
Constants.FV_VAR_HEADER_FOOTER_6 int
Value:20
Constants.FV_VAR_HEADER_FOOTER_7 int
Value:21
Constants.FV_VAR_HEADER_FOOTER_8 int
Value:22
Constants.FV_VAR_HEADER_FOOTER_9 int
Value:23
Constants.FV_VAR_HEADER_FOOTER_10 int
Value:24
Constants.FV_VAR_HEADER_FOOTER_11 int
Value:25
Constants.FV_VAR_HEADER_FOOTER_12 int
Value:26
Constants.FV_VAR_HEADER_FOOTER_13 int
Value:27
Constants.FV_VAR_HEADER_FOOTER_14 int
Value:28
Constants.FV_VAR_HEADER_FOOTER_15 int
Value:29
221
CONSTANTS
CHAPTER 5 OBJECT REFERENCE
Constants.FV_VAR_HEADER_FOOTER_16 int
Value:30
Constants.FV_VAR_HEADER_FOOTER_17 int
Value:31
Constants.FV_VAR_HEADER_FOOTER_18 int
Value:32
Constants.FP_Fmt int
Value:1050
Constants.FP_NextVarFmtInDoc int
Value:1051
Constants.FP_XRefFile int
Value:1070
Constants.FP_TextRange int
Value:1071
Constants.FP_NextXRefInDoc int
Value:1072
Constants.FP_XRefFmt int
Value:1073
Constants.FP_XRefSrcText int
Value:1075
Constants.FP_XRefSrcIsElem int
Value:1076
Constants.FP_XRefIsUnresolved int
Value:1077
Constants.FP_XRefSrcElemNonUniqueId int
Value:1152
Constants.FP_XRefAltText int
Value:1153
Constants.FP_XRefClientName int
Value:1154
Constants.FP_XRefClientType int
Value:1155
Constants.FP_XRefResolvedWithKeyref int
Value:1156
222
CONSTANTS
CHAPTER 5 OBJECT REFERENCE
Constants.FP_XRefRetainKeydefText int
Value:1157
Constants.FP_NextXRefFmtInDoc int
Value:1074
Constants.FP_TextLineType int
Value:1095
Constants.FV_TEXTLINE_LEFT int
Value:0
Constants.FV_TEXTLINE_RIGHT int
Value:1
Constants.FV_TEXTLINE_CENTER int
Value:2
Constants.FV_TEXTLINE_MATH int
Value:3
Constants.FP_BasePointX int
Value:1116
Constants.FP_BasePointY int
Value:1117
Constants.FP_NextCondFmtInDoc int
Value:1138
Constants.FP_CondFmtIsShown int
Value:1139
Constants.FP_SepOverride int
Value:1140
Constants.FP_UseSepOverride int
Value:1141
Constants.FP_StyleOverride int
Value:1142
Constants.FV_CN_NO_OVERRIDE int
Value:0
Constants.FV_CN_OVERLINE int
Value:1
Constants.FV_CN_STRIKETHROUGH int
Value:2
223
CONSTANTS
CHAPTER 5 OBJECT REFERENCE
Constants.FV_CN_SINGLE_UNDERLINE int
Value:3
Constants.FV_CN_DOUBLE_UNDERLINE int
Value:4
Constants.FV_CN_CHANGEBAR int
Value:5
Constants.FV_CN_NUMERIC_UNDERLIN int
E Value:6
Constants.FV_CN_NMRIC_AND_CHNGB int
AR Value:7
Constants.FP_NextAttrCondExprInDoc int
Value:2816
Constants.FP_AttrCondExprStr int
Value:2817
Constants.FP_AttrCondExprIsActive int
Value:2818
Constants.FP_InCond int
Value:1150
Constants.FP_StyleOverrides int
Value:1151
Constants.FV_CS_NO_OVERRIDE int
Value:0x00
Constants.FV_CS_OVERLINE int
Value:0x01
Constants.FV_CS_STRIKETHROUGH int
Value:0x02
Constants.FV_CS_SINGLE_UNDERLINE int
Value:0x04
Constants.FV_CS_DOUBLE_UNDERLINE int
Value:0x08
Constants.FV_CS_CHANGEBAR int
Value:0x10
Constants.FV_CS_NUMERIC_UNDERLINE int
Value:0x20
224
CONSTANTS
CHAPTER 5 OBJECT REFERENCE
Constants.FP_NextFlowInDoc int
Value:1162
Constants.FP_FlowIsSynchronized int
Value:1163
Constants.FP_MinHang int
Value:1164
Constants.FP_FlowIsAutoConnect int
Value:1165
Constants.FP_FlowIsFeathered int
Value:1166
Constants.FP_Spacing int
Value:1167
Constants.FP_FlowIsPostScript int
Value:1168
Constants.FP_FirstTextFrameInFlow int
Value:1169
Constants.FP_LastTextFrameInFlow int
Value:1170
Constants.FP_SideHeadRoomInFlow int
Value:1174
Constants.FP_MaxInterlinePadding int
Value:470
Constants.FP_MaxInterPgfPadding int
Value:471
Constants.FP_CellUseOverrideLRuling int
Value:1190
Constants.FP_CellUseOverrideRRuling int
Value:1191
Constants.FP_CellUseOverrideTRuling int
Value:1192
Constants.FP_CellUseOverrideBRuling int
Value:1193
Constants.FP_CellOverrideShading int
Value:1194
225
CONSTANTS
CHAPTER 5 OBJECT REFERENCE
Constants.FP_CellOverrideFill int
Value:1195
Constants.FP_CellUseOverrideFill int
Value:1196
Constants.FP_CellUseOverrideShading int
Value:1197
Constants.FP_CellRow int
Value:1198
Constants.FP_NextCellInTbl int
Value:1199
Constants.FP_CellBelowInTbl int
Value:1200
Constants.FP_PrevCellInRow int
Value:1201
Constants.FP_NextCellInRow int
Value:1202
Constants.FP_CellAboveInCol int
Value:1203
Constants.FP_CellBelowInCol int
Value:1204
Constants.FP_CellColNum int
Value:1205
Constants.FP_CellIsStraddled int
Value:1206
Constants.FP_CellNumRowsStraddled int
Value:1207
Constants.FP_CellNumColsStraddled int
Value:1208
Constants.FP_CellAngle int
Value:1209
Constants.FP_CellOverrideTopRuling int
Value:1210
Constants.FP_CellOverrideBottomRuling int
Value:1211
226
CONSTANTS
CHAPTER 5 OBJECT REFERENCE
Constants.FP_CellOverrideLeftRuling int
Value:1212
Constants.FP_CellOverrideRightRuling int
Value:1213
Constants.FP_CellDefaultTopRuling int
Value:1214
Constants.FP_CellDefaultBottomRuling int
Value:1215
Constants.FP_CellDefaultLeftRuling int
Value:1216
Constants.FP_CellDefaultRightRuling int
Value:1217
Constants.FP_CellIsShown int
Value:1218
Constants.FP_PrevCell int
Value:1219
Constants.FP_NextCell int
Value:1220
Constants.FP_PrevRowInTbl int
Value:1244
Constants.FP_NextRowInTbl int
Value:1245
Constants.FP_RowTbl int
Value:1246
Constants.FP_FirstCellInRow int
Value:1247
Constants.FP_RowKeepWithNext int
Value:1248
Constants.FP_RowKeepWithPrev int
Value:1249
Constants.FP_RowMaxHeight int
Value:1250
Constants.FP_RowMinHeight int
Value:1251
227
CONSTANTS
CHAPTER 5 OBJECT REFERENCE
Constants.FP_RowStart int
Value:1252
Constants.FV_ROW_ANYWHERE int
Value:0
Constants.FV_ROW_TOP_OF_COL int
Value:1
Constants.FV_ROW_TOP_OF_PAGE int
Value:2
Constants.FV_ROW_TOP_OF_LEFT_PAGE int
Value:3
Constants.FV_ROW_TOP_OF_RIGHT_PA int
GE Value:4
Constants.FP_RowType int
Value:1253
Constants.FV_ROW_HEADING int
Value:0
Constants.FV_ROW_BODY int
Value:1
Constants.FV_ROW_FOOTING int
Value:2
Constants.FP_RowIsShown int
Value:1254
Constants.FP_TblTag int
Value:1275
Constants.FP_NextTblFmtInDoc int
Value:1276
Constants.FP_TblLeftIndent int
Value:1278
Constants.FP_TblRightIndent int
Value:1279
Constants.FP_TblSpaceAbove int
Value:1280
Constants.FP_TblSpaceBelow int
Value:1281
228
CONSTANTS
CHAPTER 5 OBJECT REFERENCE
Constants.FP_TblAlignment int
Value:1282
Constants.FV_ALIGN_TBL_LEFT int
Value:0
Constants.FV_ALIGN_TBL_CENTER int
Value:1
Constants.FV_ALIGN_TBL_RIGHT int
Value:2
Constants.FP_TblPlacement int
Value:1283
Constants.FV_TBL_ANYWHERE int
Value:0
Constants.FV_TBL_TOP_OF_COL int
Value:1
Constants.FV_TBL_TOP_OF_PAGE int
Value:2
Constants.FV_TBL_TOP_OF_LEFT_PAGE int
Value:3
Constants.FV_TBL_TOP_OF_RIGHT_PAG int
E Value:4
Constants.FV_TBL_FLOAT int
Value:5
Constants.FP_TblInitNumCols int
Value:1284
Constants.FP_TblInitNumHRows int
Value:1285
Constants.FP_TblInitNumBodyRows int
Value:1286
Constants.FP_TblInitNumFRows int
Value:1287
Constants.FP_TblNumbering int
Value:1288
Constants.FV_TBL_NUM_BY_ROW int
Value:0
229
CONSTANTS
CHAPTER 5 OBJECT REFERENCE
Constants.FV_TBL_NUM_BY_COL int
Value:1
Constants.FP_TblTitlePosition int
Value:1289
Constants.FV_TBL_NO_TITLE int
Value:0
Constants.FV_TBL_TITLE_ABOVE int
Value:1
Constants.FV_TBL_TITLE_BELOW int
Value:2
Constants.FP_TblTitleGap int
Value:1290
Constants.FP_OrphanRows int
Value:1291
Constants.FP_TblCatalogEntry int
Value:1292
Constants.FP_TblColRulingPeriod int
Value:1293
Constants.FP_TblBodyRowRulingPeriod int
Value:1294
Constants.FP_TblLastBodyRuling int
Value:1295
Constants.FP_TblHFFill int
Value:1296
Constants.FP_TblHFColor int
Value:1297
Constants.FP_TblBodyFirstFill int
Value:1298
Constants.FP_TblBodyFirstColor int
Value:1299
Constants.FP_TblBodyShadeBy int
Value:1300
Constants.FP_TblBodyFirstPeriod int
Value:1301
230
CONSTANTS
CHAPTER 5 OBJECT REFERENCE
Constants.FP_TblBodyNextFill int
Value:1302
Constants.FP_TblBodyNextPeriod int
Value:1303
Constants.FP_TblBodyNextColor int
Value:1304
Constants.FP_TblTopRuling int
Value:1305
Constants.FP_TblBottomRuling int
Value:1306
Constants.FP_TblLeftRuling int
Value:1307
Constants.FP_TblRightRuling int
Value:1308
Constants.FP_TblColRuling int
Value:1309
Constants.FP_TblBodyRowRuling int
Value:1310
Constants.FP_TblHFSeparatorRuling int
Value:1311
Constants.FP_TblHFRowRuling int
Value:1312
Constants.FP_TblOtherBodyRowRuling int
Value:1313
Constants.FP_TblOtherColRuling int
Value:1314
Constants.FP_TblCellTopMargin int
Value:1315
Constants.FP_TblCellBottomMargin int
Value:1316
Constants.FP_TblCellLeftMargin int
Value:1317
Constants.FP_TblCellRightMargin int
Value:1318
231
CONSTANTS
CHAPTER 5 OBJECT REFERENCE
Constants.FP_TblInLockedTi int
Value:1319
Constants.FP_TblNumCols int
Value:1335
Constants.FP_TblNumRows int
Value:1336
Constants.FP_NextTblInDoc int
Value:1337
Constants.FP_FirstRowInTbl int
Value:1338
Constants.FP_LastRowInTbl int
Value:1339
Constants.FP_TblWidth int
Value:1340
Constants.FP_TopRowSelection int
Value:1341
Constants.FP_BottomRowSelection int
Value:1342
Constants.FP_LeftColNum int
Value:1343
Constants.FP_RightColNum int
Value:1344
Constants.FP_TblColWidths int
Value:1345
Constants.FP_TblTitleSelected int
Value:1346
Constants.FP_NextRulingFmtInDoc int
Value:1430
Constants.FP_RulingPenWidth int
Value:1432
Constants.FP_RulingGap int
Value:1433
Constants.FP_RulingSep int
Value:1434
232
CONSTANTS
CHAPTER 5 OBJECT REFERENCE
Constants.FP_RulingLines int
Value:1435
Constants.FP_NextColorInDoc int
Value:1455
Constants.FP_Pantone int
Value:1456
Constants.FP_Cyan int
Value:1457
Constants.FP_Magenta int
Value:1458
Constants.FP_Yellow int
Value:1459
Constants.FP_Black int
Value:1460
Constants.FP_ColorViewCtl int
Value:1461
Constants.FV_SEP_NORMAL int
Value:0x0
Constants.FV_SEP_NONE int
Value:0x1
Constants.FV_SEP_WHITE int
Value:0x2
Constants.FP_ColorPrintCtl int
Value:1462
Constants.FV_PRINT_SPOT int
Value:0x0
Constants.FV_PRINT_PROCESS int
Value:0x1
Constants.FV_PRINT_NO int
Value:0x2
Constants.FP_ReservedColor int
Value:1463
Constants.FV_COLOR_NOT_RESERVED int
Value:0
233
CONSTANTS
CHAPTER 5 OBJECT REFERENCE
Constants.FV_COLOR_CYAN int
Value:1
Constants.FV_COLOR_MAGENTA int
Value:2
Constants.FV_COLOR_YELLOW int
Value:3
Constants.FV_COLOR_BLACK int
Value:4
Constants.FV_COLOR_WHITE int
Value:5
Constants.FV_COLOR_RED int
Value:6
Constants.FV_COLOR_GREEN int
Value:7
Constants.FV_COLOR_BLUE int
Value:8
Constants.FV_COLOR_DARKGREY int
Value:9
Constants.FV_COLOR_PALEGREEN int
Value:10
Constants.FV_COLOR_FORESTGREEN int
Value:11
Constants.FV_COLOR_ROYALBLUE int
Value:12
Constants.FV_COLOR_MAUVE int
Value:13
Constants.FV_COLOR_LIGHTSALMON int
Value:14
Constants.FV_COLOR_DARKYELLOW int
Value:15
Constants.FV_COLOR_SALMON int
Value:16
Constants.FP_FamilyName int
Value:1464
234
CONSTANTS
CHAPTER 5 OBJECT REFERENCE
Constants.FP_InkName int
Value:1465
Constants.FP_ColorTintPercent int
Value:1466
Constants.FP_TintBaseColor int
Value:1467
Constants.FV_NO_BASE_COLOR int
Value:0x00
Constants.FP_ColorOverprint int
Value:1468
Constants.FV_COLOR_KNOCKOUT int
Value:0x00
Constants.FV_COLOR_OVERPRINT int
Value:0x01
Constants.FP_NextRubiInDoc int
Value:1469
Constants.FP_OyamojiTextRange int
Value:1470
Constants.FP_RubiTextRange int
Value:1471
Constants.FP_HypertextDoValidate int
Value:2300
Constants.FP_HypertextCommandText int
Value:2301
Constants.FP_HypertextParsedArgs int
Value:2302
Constants.FP_HypertextParseErr int
Value:2303
Constants.FV_HypertextSyntaxOK int
Value:0
Constants.FV_HypertextEmptyCommand int
Value:1
Constants.FV_HypertextUnrecognizedCo int
mmand Value:2
235
CONSTANTS
CHAPTER 5 OBJECT REFERENCE
Constants.FV_HypertextMissingArgumen int
ts Value:3
Constants.FV_HypertextExtraArguments int
Value:4
Constants.FV_HypertextBadSyntaxPathS int
pec Value:10
Constants.FV_HypertextUnanchoredPart int
ialPath Value:11
Constants.FV_HypertextHelpDirNotFoun int
d Value:20
Constants.FV_HypertextExpectedANumb int
erParam Value:30
Constants.FP_HypertextValidateErr int
Value:2304
Constants.FV_HypertextValid int
Value:0
Constants.FV_HypertextUsesDefaultText int
Value:200
Constants.FV_HypertextFileNotRegular int
Value:210
Constants.FV_HypertextFileNotMakerDo int
c Value:211
Constants.FV_HypertextCantOpenDestFil int
e Value:212
Constants.FV_HypertextDestinationLink int
NotFound Value:220
Constants.FV_HypertextDuplicateLinkNa int
me Value:221
Constants.FV_HypertextPageNameNotFo int
und Value:230
Constants.FV_HypertextUnrecognizedOb int
jectType Value:240
Constants.FV_HypertextObjectIDNotFou int
nd Value:241
236
CONSTANTS
CHAPTER 5 OBJECT REFERENCE
Constants.FV_HypertextBadMatrixSize int
Value:250
Constants.FV_HypertextMatrixComman int
dInvalid Value:251
Constants.FV_HypertextFlowMissingLine int
s Value:252
Constants.FV_HypertextNoNamedFlow int
Value:260
Constants.FV_HypertextRecursiveFlow int
Value:261
Constants.FV_HypertextMissingPopupM int
arker Value:270
Constants.FV_HypertextMissingPopupLa int
belItem Value:271
Constants.FV_HypertextEmptyLineInMid int
dleOfPopup Value:272
Constants.FV_HypertextCommandIllegal int
WithinPopup Value:273
Constants.FV_HypertextFcodeInvalid int
Value:280
Constants.FP_HypertextParseBadParam int
Value:2305
Constants.FP_HypertextParseErrMsg int
Value:2306
Constants.FP_HypertextParsedCmdCode int
Value:2307
Constants.FV_CmdNotTyped int
Value:0
Constants.FV_CmdError int
Value:1
Constants.FV_CmdUnknown int
Value:2
Constants.FV_CmdNoop int
Value:3
237
CONSTANTS
CHAPTER 5 OBJECT REFERENCE
Constants.FV_CmdAlert int
Value:8
Constants.FV_CmdAlertTitle int
Value:9
Constants.FV_CmdExit int
Value:10
Constants.FV_CmdGoToLink int
Value:11
Constants.FV_CmdGoToLinkFitWin int
Value:12
Constants.FV_CmdGoToNew int
Value:13
Constants.FV_CmdGoToPage int
Value:14
Constants.FV_CmdGoToObjectId int
Value:15
Constants.FV_CmdGoToObjectIdFitWin int
Value:16
Constants.FV_CmdMatrix int
Value:17
Constants.FV_CmdMessage int
Value:18
Constants.FV_CmdNewLink int
Value:19
Constants.FV_CmdNextPage int
Value:20
Constants.FV_CmdPreviousPage int
Value:21
Constants.FV_CmdOpenLink int
Value:22
Constants.FV_CmdOpenLinkFitWin int
Value:23
Constants.FV_CmdOpenNew int
Value:24
238
CONSTANTS
CHAPTER 5 OBJECT REFERENCE
Constants.FV_CmdOpenObjectId int
Value:25
Constants.FV_CmdOpenObjectIdFitWin int
Value:26
Constants.FV_CmdOpenPage int
Value:27
Constants.FV_CmdPopup int
Value:28
Constants.FV_CmdPreviousLink int
Value:29
Constants.FV_CmdPreviousLinkFitWin int
Value:30
Constants.FV_CmdQuit int
Value:31
Constants.FV_CmdQuitAll int
Value:32
Constants.FV_CmdMultiMedia int
Value:33
Constants.FV_CmdFCodes int
Value:256
Constants.FV_CmdOutCodes int
Value:257
Constants.FV_CmdInCodes int
Value:258
Constants.FV_CmdApplyMathRules int
Value:259
Constants.FV_CmdThesaurusLookup int
Value:260
Constants.FV_CmdNative int
Value:261
Constants.FV_CmdHelpLink int
Value:262
Constants.FV_CmdBeginRange int
Value:263
239
CONSTANTS
CHAPTER 5 OBJECT REFERENCE
Constants.FV_CmdEndRange int
Value:264
Constants.FP_HypertextParsedCmdDest int
Value:2308
Constants.FV_DestNowhere int
Value:0
Constants.FV_DestMarkerNewLink int
Value:1
Constants.FV_DestFirstPage int
Value:2
Constants.FV_DestLastPage int
Value:3
Constants.FV_DestPageNum int
Value:4
Constants.FV_DestFluidFlow int
Value:5
Constants.FV_DestMarker int
Value:6
Constants.FV_DestObjectId int
Value:7
Constants.FV_DestXRef int
Value:8
Constants.FP_HypertextParsedCmdDest int
ObjType Value:2309
Constants.FV_ObjectUnknown int
Value:0
Constants.FV_ObjectMarker int
Value:1
Constants.FV_ObjectPgf int
Value:2
Constants.FV_ObjectXref int
Value:3
Constants.FV_ObjectGraphic int
Value:4
240
CONSTANTS
CHAPTER 5 OBJECT REFERENCE
Constants.FV_ObjectElement int
Value:5
Constants.FV_ObjectTextInset int
Value:6
Constants.FV_ObjectDataLink int
Value:7
Constants.FP_HypertextParsedCmdDest int
ObjID Value:2310
Constants.FP_HypertextParsedCmdMatri int
xRows Value:2311
Constants.FP_HypertextParsedCmdMatri int
xColumns Value:2312
Constants.FP_HypertextParsedLinkName int
Value:2313
Constants.FP_HypertextParsedPageNam int
e Value:2314
Constants.FP_HypertextParsedFlowNam int
e Value:2315
Constants.FP_HypertextParsedRangeNa int
me Value:2316
Constants.FP_HypertextParsedClientNa int
me Value:2317
Constants.FP_HypertextParsedTitle int
Value:2318
Constants.FP_HypertextParsedMessage int
Value:2319
Constants.FP_HypertextParsedDIFileNa int
me Value:2320
Constants.FP_FirstElementDefInDoc int
Value:1483
Constants.FP_ElementBoundaryDisplay int
Value:1484
Constants.FP_BannerTextDisplay int
Value:1600
241
CONSTANTS
CHAPTER 5 OBJECT REFERENCE
Constants.FP_BooleanConditionExpressi int
on Value:2321
Constants.FP_BooleanConditionState int
Value:2322
Constants.FP_BooleanConditionExpressi int
onTag Value:995
Constants.FP_IsDitamapInResourceMan int
ager Value:2332
Constants.FP_IsDocDitamap int
Value:2879
Constants.FP_IsDocDita int
Value:2880
Constants.FP_DirectOLESupportInXml int
Value:2881
Constants.FP_DocIsStructuredDummy int
Value:2882
Constants.FP_StructuredDummyDocText int
Value:2883
Constants.FV_ELEM_DISP_NONE int
Value:0
Constants.FV_ELEM_DISP_BRACKETS int
Value:1
Constants.FV_ELEM_DISP_TAGS int
Value:2
Constants.FP_ElementCatalogDisplay int
Value:1485
Constants.FV_ELCAT_STRICT int
Value:0x00
Constants.FV_ELCAT_LOOSE int
Value:0x01
Constants.FV_ELCAT_CHILDREN int
Value:0x02
Constants.FV_ELCAT_ALL int
Value:0x03
242
CONSTANTS
CHAPTER 5 OBJECT REFERENCE
Constants.FV_ELCAT_CUSTOM int
Value:0x04
Constants.FP_DefaultInclusions int
Value:1486
Constants.FP_DefaultExclusions int
Value:1487
Constants.FP_ElementCatalog int
Value:1488
Constants.FP_FirstFmtChangeListInDoc int
Value:1489
Constants.FP_NewElemAttrDisplay int
Value:1490
Constants.FV_ATTR_DISP_NONE int
Value:1
Constants.FV_ATTR_DISP_REQSPEC int
Value:2
Constants.FV_ATTR_DISP_ALL int
Value:3
Constants.FP_NewElemAttrEditing int
Value:1491
Constants.FV_ATTR_EDIT_NONE int
Value:0
Constants.FV_ATTR_EDIT_REQUIRED int
Value:1
Constants.FV_ATTR_EDIT_ALWAYS int
Value:2
Constants.FP_UseInitialStructure int
Value:1492
Constants.FP_SeparateInclusions int
Value:1493
Constants.FP_ElementSelection int
Value:1494
Constants.FP_StructuredApplication int
Value:1495
243
CONSTANTS
CHAPTER 5 OBJECT REFERENCE
Constants.FP_CustomElementList int
Value:1496
Constants.FP_StructuredApplicationList int
Value:1497
Constants.FP_StructuredApplicationForO int
pen Value:1498
Constants.FP_UseInitialStructureOfAutoI int
nsertedElements Value:1499
Constants.FP_StructAppAttrConfigFile int
Value:1500
Constants.FP_ShowElementDescriptiveN int
ames Value:1501
Constants.FP_BkGndColor int
Value:1502
Constants.FP_TextColor int
Value:1503
Constants.FP_DitaMode int
Value:1504
Constants.FP_XSLTTransformationScenar int
ioFile Value:1505
Constants.FP_XSLTProcessors int
Value:1506
Constants.FV_STRICTLY_VALID int
Value:0x01
Constants.FV_LOOSELY_VALID int
Value:0x02
Constants.FV_ALTERNATIVE int
Value:0x04
Constants.FV_INCLUSION int
Value:0x08
Constants.FP_HighestLevelElement int
Value:1509
Constants.FP_ComponentElement int
Value:1551
244
CONSTANTS
CHAPTER 5 OBJECT REFERENCE
Constants.FP_ExtractElementTags int
Value:1552
Constants.FP_NextElementDefInDoc int
Value:1572
Constants.FP_ElementInCatalog int
Value:1573
Constants.FP_ValidHighestLevel int
Value:1574
Constants.FP_GeneralRule int
Value:1575
Constants.FP_Exclusions int
Value:1576
Constants.FP_Inclusions int
Value:1577
Constants.FP_GeneralRuleErrorOffsets int
Value:1578
Constants.FP_ElementDefType int
Value:1579
Constants.FP_Comment int
Value:1581
Constants.FP_TextFmtRules int
Value:1582
Constants.FP_ObjectFmtRules int
Value:1583
Constants.FP_AttributeDefs int
Value:1584
Constants.FP_InitStructurePattern int
Value:1585
Constants.FP_TableTagging int
Value:1585
Constants.FP_ElementPgfFormat int
Value:1586
Constants.FP_PrefixRules int
Value:1587
245
CONSTANTS
CHAPTER 5 OBJECT REFERENCE
Constants.FP_SuffixRules int
Value:1588
Constants.FP_FirstPgfRules int
Value:1589
Constants.FP_LastPgfRules int
Value:1590
Constants.FP_AlsoInsert int
Value:1591
Constants.FP_ParsedGeneralRule int
Value:1592
Constants.FP_ElementDataType int
Value:1593
Constants.FP_AllowedDataRange int
Value:1594
Constants.FP_AlsoInserts int
Value:1595
Constants.FP_DescriptiveTag int
Value:1596
Constants.FP_ElementDescription int
Value:1597
Constants.FP_XMLStructuredApplication int
List Value:1598
Constants.FP_BannerText int
Value:1599
Constants.FV_FO_UNSPECIFIED int
Value:0
Constants.FV_FO_TEXTNODE int
Value:0
Constants.FV_FO_CONTAINER int
Value:1
Constants.FV_FO_SYS_VAR int
Value:2
Constants.FV_FO_XREF int
Value:3
246
CONSTANTS
CHAPTER 5 OBJECT REFERENCE
Constants.FV_FO_MARKER int
Value:4
Constants.FV_FO_FOOTNOTE int
Value:5
Constants.FV_FO_GRAPHIC int
Value:6
Constants.FV_FO_EQN int
Value:7
Constants.FV_FO_TBL int
Value:8
Constants.FV_FO_TBL_TITLE int
Value:9
Constants.FV_FO_TBL_HEADING int
Value:10
Constants.FV_FO_TBL_BODY int
Value:11
Constants.FV_FO_TBL_FOOTING int
Value:12
Constants.FV_FO_TBL_ROW int
Value:13
Constants.FV_FO_TBL_CELL int
Value:14
Constants.FV_FO_RUBI_GROUP int
Value:15
Constants.FV_FO_RUBI int
Value:16
Constants.FV_FO_NUMTYPES int
Value:17
Constants.FV_DT_UNSPECIFIED int
Value:0
Constants.FV_DT_INTEGER int
Value:1
Constants.FV_DT_FLOAT int
Value:2
247
CONSTANTS
CHAPTER 5 OBJECT REFERENCE
Constants.FV_DT_NUMTYPES int
Value:3
Constants.FV_AT_STRING int
Value:0
Constants.FV_AT_STRINGS int
Value:1
Constants.FV_AT_CHOICES int
Value:2
Constants.FV_AT_INTEGER int
Value:3
Constants.FV_AT_INTEGERS int
Value:4
Constants.FV_AT_REAL int
Value:5
Constants.FV_AT_REALS int
Value:6
Constants.FV_AT_UNIQUE_ID int
Value:7
Constants.FV_AT_UNIQUE_IDREF int
Value:8
Constants.FV_AT_UNIQUE_IDREFS int
Value:9
Constants.FV_AT_NUMTYPES int
Value:10
Constants.FV_AF_READ_ONLY int
Value:0x0001
Constants.FV_AF_HIDDEN int
Value:0x0002
Constants.FV_AF_FIXED int
Value:0x0004
Constants.FP_FmtRuleType int
Value:2100
Constants.FP_CountElements int
Value:2101
248
CONSTANTS
CHAPTER 5 OBJECT REFERENCE
Constants.FP_StopCountingAt int
Value:2102
Constants.FP_FmtRuleClauses int
Value:2103
Constants.FP_FmtRuleClause int
Value:2104
Constants.FV_CONTEXT_RULE int
Value:0
Constants.FV_LEVEL_RULE int
Value:1
Constants.FP_Specification int
Value:2150
Constants.FP_IsTextRange int
Value:2151
Constants.FP_RuleClauseType int
Value:2152
Constants.FP_FormatTag int
Value:2153
Constants.FP_FmtChangeListTag int
Value:2154
Constants.FP_FmtChangeList int
Value:2155
Constants.FP_SubFmtRule int
Value:2156
Constants.FP_ContextLabel int
Value:2157
Constants.FP_ElemPrefixSuffix int
Value:2158
Constants.FP_FmtRule int
Value:2159
Constants.FP_ParsedSpecification int
Value:2160
Constants.FP_SpecificationForCSS int
Value:2161
249
CONSTANTS
CHAPTER 5 OBJECT REFERENCE
Constants.FP_ContextForCSS int
Value:2162
Constants.FP_ParseFullSpecification int
Value:2163
Constants.FV_RC_TAG int
Value:0
Constants.FV_RC_SUB_FMTRULE int
Value:1
Constants.FV_RC_CHANGELIST int
Value:2
Constants.FV_RC_CHANGELIST_TAG int
Value:3
Constants.FV_EDT_TEXT int
Value:40
Constants.FV_EDT_TEXTONLY int
Value:41
Constants.FV_EDT_ANY int
Value:42
Constants.FV_EDT_ALL int
Value:43
Constants.FV_EDT_FIRST int
Value:44
Constants.FV_EDT_MIDDLE int
Value:45
Constants.FV_EDT_LAST int
Value:46
Constants.FV_EDT_NOTFIRST int
Value:47
Constants.FV_EDT_NOTLAST int
Value:48
Constants.FV_EDT_AFTER int
Value:49
Constants.FV_EDT_BEFORE int
Value:50
250
CONSTANTS
CHAPTER 5 OBJECT REFERENCE
Constants.FV_EDT_BETWEEN int
Value:53
Constants.FV_EDT_INSERTPAR int
Value:23
Constants.FV_EDT_ONLY int
Value:62
Constants.FV_EDT_ATTRGRPO int
Value:30
Constants.FV_EDT_ELEMENT int
Value:25
Constants.FP_ElementDef int
Value:1621
Constants.FP_ParentElement int
Value:1622
Constants.FP_FirstChildElement int
Value:1623
Constants.FP_LastChildElement int
Value:1624
Constants.FP_PrevSiblingElement int
Value:1625
Constants.FP_NextSiblingElement int
Value:1626
Constants.FP_ElementIsCollapsed int
Value:1627
Constants.FP_BookComponent int
Value:1628
Constants.FP_Object int
Value:1630
Constants.FP_MatchingTextClauses int
Value:1631
Constants.FP_MatchingObjectClauses int
Value:1632
Constants.FP_Attributes int
Value:1634
251
CONSTANTS
CHAPTER 5 OBJECT REFERENCE
Constants.FP_AttributesEx int
Value:1670
Constants.FP_AttrDisplay int
Value:1635
Constants.FP_ElementType int
Value:1636
Constants.FP_IDAttrValue int
Value:1637
Constants.FP_MatchingFirstPgfClauses int
Value:1638
Constants.FP_MatchingLastPgfClauses int
Value:1639
Constants.FP_MatchingPrefixClauses int
Value:1640
Constants.FP_MatchingSuffixClauses int
Value:1641
Constants.FP_MatchesContextInUserStri int
ng Value:1642
Constants.FP_Namespace int
Value:1643
Constants.FP_NamespaceScope int
Value:1644
Constants.FP_NumNamespaces int
Value:1645
Constants.FP_NextElementDFS int
Value:2334
Constants.FP_PrevElementDFS int
Value:2335
Constants.FP_ElementIsTopicRef int
Value:2336
Constants.FP_ElementIsTopicHead int
Value:2337
Constants.FP_ElementIsTopicGroup int
Value:2338
252
CONSTANTS
CHAPTER 5 OBJECT REFERENCE
Constants.FP_TopicRefAbsoluteFilePath int
Value:2347
Constants.FP_Element int
Value:2170
Constants.FP_TblElement int
Value:2171
Constants.FP_TblTitleElement int
Value:2172
Constants.FP_TblHeaderElement int
Value:2173
Constants.FP_TblBodyElement int
Value:2174
Constants.FP_TblFooterElement int
Value:2175
Constants.FP_RubiElement int
Value:2176
Constants.FP_AllowAsSpecialCase int
Value:1649
Constants.FP_ElementIsUndefined int
Value:1650
Constants.FP_ContentIsStrictlyValid int
Value:1651
Constants.FP_ContentIsLooselyValid int
Value:1652
Constants.FP_ContentNeededAtBegin int
Value:1653
Constants.FP_HoleAtEnd int
Value:1654
Constants.FP_ContentNeededAtEnd int
Value:1654
Constants.FP_ElementIsExcludedInConte int
xt Value:1655
Constants.FP_ElementIsInvalidInParent int
Value:1656
253
CONSTANTS
CHAPTER 5 OBJECT REFERENCE
Constants.FP_ElementIsInvalidInPosition int
Value:1657
Constants.FP_ElementTypeMismatch int
Value:1658
Constants.FP_HoleBeforeElement int
Value:1659
Constants.FP_TextIsInvalidInElement int
Value:1660
Constants.FP_InvalidHighestLevel int
Value:1661
Constants.FP_BookComponentMissing int
Value:1662
Constants.FP_ErrorInBookComponent int
Value:1663
Constants.FP_NextInvalidElement int
Value:1664
Constants.FP_ContentMustBeEmpty int
Value:1665
Constants.FP_AttributeValueRequired int
Value:1666
Constants.FP_AttributeValueInvalid int
Value:1667
Constants.FP_ValidationFlags int
Value:1668
Constants.FP_ElementMarkedForNamed int
Destination Value:1669
Constants.FV_ELEM_UNDEFINED int
Value:0x0001
Constants.FV_ELEM_TYPE_MISMATCH int
Value:0x0002
Constants.FV_ELEM_EXCLUDED int
Value:0x0004
Constants.FV_ELEM_INVALID_IN_PAREN int
T Value:0x0008
254
CONSTANTS
CHAPTER 5 OBJECT REFERENCE
Constants.FV_ELEM_INVALID_AT_POSITI int
ON Value:0x0010
Constants.FV_ELEM_HAS_TEXT_INVALID int
Value:0x0020
Constants.FV_ELEM_CONTENT_MUST_B int
E_EMPTY Value:0x0040
Constants.FV_ELEM_MISSING_CONTENT int
_BEFORE Value:0x0080
Constants.FV_ELEM_MISSING_CONTENT int
_AT_BEG Value:0x0100
Constants.FV_ELEM_MISSING_CONTENT int
_AT_END Value:0x0200
Constants.FV_ELEM_NOT_VALID_AS_RO int
OT Value:0x0400
Constants.FV_ELEM_BOOK_COMP_MISS int
ING Value:0x0800
Constants.FV_ELEM_BOOK_COMP_INVA int
LID Value:0x1000
Constants.FV_ELEM_ATTRVAL_REQUIRE int
D Value:0x2000
Constants.FV_ELEM_ATTRVAL_INVALID int
Value:0x4000
Constants.FV_ELEM_CONTENT_STRICTLY int
_VALID Value:0x10000
Constants.FV_ELEM_CONTENT_LOOSELY int
_VALID Value:0x20000
Constants.FV_ELEM_INVISIBLE_ATTRVAL int
_REQUIRED Value:0x40000
Constants.FV_ELEM_INVISIBLE_ATTRVAL int
_INVALID Value:0x80000
Constants.FV_AV_REQUIRED int
Value:1
Constants.FV_AV_INVALID_CHOICE int
Value:2
255
CONSTANTS
CHAPTER 5 OBJECT REFERENCE
Constants.FV_AV_INVALID_FORMAT int
Value:3
Constants.FV_AV_IDREF_UNRESOLVED int
Value:4
Constants.FV_AV_ID_DUPLICATE_IN_DO int
C Value:5
Constants.FV_AV_ID_DUPLICATE_IN_BO int
OK Value:6
Constants.FV_AV_TOO_MANY_TOKENS int
Value:7
Constants.FV_AV_UNDEFINED int
Value:8
Constants.FV_AV_OUT_OF_RANGE int
Value:9
Constants.FV_OVERRIDDEN_DEFAULT int
Value:0x00
Constants.FV_OVERRIDDEN_NOVALUE int
Value:0x01
Constants.FV_OVERRIDDEN_CONREF_D int
UCT Value:0x02
Constants.FV_OVERRIDDEN_KEYDEF_TO int
_KEYREF Value:0x03
Constants.FV_Element int
Value:0
Constants.FV_ElementsOfType int
Value:1
Constants.FV_AllElements int
Value:2
Constants.FP_NextFmtChangeListInDoc int
Value:2000
Constants.FP_FmtChangeListInCatalog int
Value:2021
Constants.FP_PgfCatalogReference int
Value:2001
256
CONSTANTS
CHAPTER 5 OBJECT REFERENCE
Constants.FP_SpaceAboveChange int
Value:2002
Constants.FP_SpaceBelowChange int
Value:2003
Constants.FP_LeftIndentChange int
Value:2004
Constants.FP_FirstIndentChange int
Value:2005
Constants.FP_RightIndentChange int
Value:2006
Constants.FP_LeadingChange int
Value:2007
Constants.FP_LineSpacingFixed int
Value:2008
Constants.FP_TopSepAtIndent int
Value:2009
Constants.FP_BottomSepAtIndent int
Value:2010
Constants.FP_FontSizeChange int
Value:2012
Constants.FP_SpreadChange int
Value:2013
Constants.FP_MoveTabs int
Value:2014
Constants.FP_CellTopMarginFixed int
Value:2015
Constants.FP_CellBottomMarginFixed int
Value:2016
Constants.FP_CellLeftMarginFixed int
Value:2017
Constants.FP_CellRightMarginFixed int
Value:2018
Constants.FP_FirstIndentIsRelative int
Value:2019
257
CONSTANTS
CHAPTER 5 OBJECT REFERENCE
Constants.FP_FirstIndentRelPos int
Value:2020
Constants.FP_CellTopMarginChange int
Value:2022
Constants.FP_CellBottomMarginChange int
Value:2023
Constants.FP_CellLeftMarginChange int
Value:2024
Constants.FP_CellRightMarginChange int
Value:2025
Constants.FP_StretchChange int
Value:2026
Constants.FF_IED_REMOVE_OVERRIDES int
Value:0x0001
Constants.FF_IED_REMOVE_BOOK_INFO int
Value:0x0002
Constants.FF_IED_DO_NOT_IMPORT_ED int
D Value:0x0004
Constants.FF_IED_NO_NOTIFY int
Value:0x0008
Constants.FF_IED_DELETE_EMPTY_PAGE int
S Value:0x0010
Constants.FF_IED_DO_NOT_IMPORT_ST int
RUCTAPP Value:0x0040
Constants.FP_Text int
Value:1701
Constants.FP_State int
Value:1702
Constants.FV_DlgOptNotActive int
Value:0
Constants.FV_DlgOptActive int
Value:1
Constants.FV_DlgOptDontCare int
Value:2
258
CONSTANTS
CHAPTER 5 OBJECT REFERENCE
Constants.FP_Labels int
Value:1703
Constants.FP_NumLines int
Value:1704
Constants.FP_FirstVis int
Value:1705
Constants.FP_DoubleClick int
Value:1706
Constants.FP_NumItems int
Value:1707
Constants.FP_Sensitivity int
Value:1708
Constants.FP_MinVal int
Value:1709
Constants.FP_MaxVal int
Value:1710
Constants.FP_IncrVal int
Value:1711
Constants.FP_Size int
Value:1712
Constants.FP_Visibility int
Value:1713
Constants.FP_PasswordStyle int
Value:1714
Constants.FP_ReadOnly int
Value:1723
Constants.FP_TabStops int
Value:1715
Constants.FP_Icon int
Value:1716
Constants.FP_WindowHandle int
Value:1717
Constants.FP_SortingEnabled int
Value:1718
259
CONSTANTS
CHAPTER 5 OBJECT REFERENCE
Constants.FP_SelectedRow int
Value:1730
Constants.FP_SelectedRowId int
Value:1731
Constants.FP_SelectedRowItems int
Value:1719
Constants.FP_LabelColor int
Value:1720
Constants.FP_LabelBold int
Value:1721
Constants.FP_Box_BG_Color int
Value:1722
Constants.FV_DlgClose int
Value:-1
Constants.FV_DlgReset int
Value:-2
Constants.FV_DlgNoChange int
Value:-3
Constants.FV_DlgEnter int
Value:-4
Constants.FV_DlgUndo int
Value:-5
Constants.FV_DlgPrevPage int
Value:-6
Constants.FV_DlgNextPage int
Value:-7
Constants.FV_DlgNeedsUpdate int
Value:-8
Constants.FV_DlgInit int
Value:-9
Constants.FV_DlgHide int
Value:-10
Constants.FV_DlgShow int
Value:-11
260
CONSTANTS
CHAPTER 5 OBJECT REFERENCE
Constants.FV_DlgResize int
Value:-12
Constants.FV_DlgPrefSetInitialState int
Value:-100
Constants.FV_DlgPrefVerify int
Value:-101
Constants.FV_DlgPrefCommit int
Value:-102
Constants.FV_EvShift int
Value:0x0001
Constants.FV_EvControl int
Value:0x0002
Constants.FV_EvMeta int
Value:0x0004
Constants.FV_EvOption int
Value:0x0004
Constants.FV_EvCaps int
Value:0x0008
Constants.FV_EvCommand int
Value:0x0010
Constants.FV_EvMax int
Value:0x0010
Constants.FP_DbItemNum int
Value:1800
Constants.FP_DbType int
Value:1801
Constants.FP_DbIdentifier int
Value:1802
Constants.FP_DbVarLabelWidth int
Value:1803
Constants.FP_DbStuffItem int
Value:1804
Constants.FP_DbSbxNumLines int
Value:1805
261
CONSTANTS
CHAPTER 5 OBJECT REFERENCE
Constants.FP_DbRadioButtonGroup int
Value:1806
Constants.FP_DbCheckBoxState int
Value:1807
Constants.FP_DbFirstFocus int
Value:1808
Constants.FP_DbDefaultButton int
Value:1809
Constants.FP_DbOKButton int
Value:1810
Constants.FP_DbCancelButton int
Value:1811
Constants.FP_DbFbTextBox int
Value:1812
Constants.FP_DbFbScrollBox int
Value:1813
Constants.FP_DbFbCurrentDir int
Value:1814
Constants.FP_DbFbStatus int
Value:1815
Constants.FP_DbTitleLabel int
Value:1816
Constants.FP_DbAttributes int
Value:1817
Constants.FP_DbEditable int
Value:1818
Constants.FP_DbNoHelp int
Value:1819
Constants.FP_LineAscent int
Value:1900
Constants.FP_LineDescent int
Value:1901
Constants.FP_LineBaseline int
Value:1902
262
CONSTANTS
CHAPTER 5 OBJECT REFERENCE
Constants.FP_MenuItemIsEnabled int
Value:1922
Constants.FP_NextMenuItemInMenu int
Value:1923
Constants.FP_PrevMenuItemInMenu int
Value:1924
Constants.FP_NextMenuItemInSession int
Value:1925
Constants.FP_MenuType int
Value:1926
Constants.FV_MENU_MENUBAR int
Value:1
Constants.FV_MENU_POPUP int
Value:2
Constants.FV_MENU_ADHOCRULER int
Value:3
Constants.FV_MENU_DEFAULT int
Value:4
Constants.FP_FirstMenuItemInMenu int
Value:1927
Constants.FP_CommandNum int
Value:1928
Constants.FP_KeyboardShortcutLabel int
Value:1929
Constants.FP_KeyboardShortcuts int
Value:1930
Constants.FP_CanHaveCheckMark int
Value:1931
Constants.FP_CheckMarkIsOn int
Value:1932
Constants.FP_MenuItemType int
Value:1933
Constants.FV_MENUITEM_FRAME int
Value:1
263
CONSTANTS
CHAPTER 5 OBJECT REFERENCE
Constants.FV_MENUITEM_API int
Value:2
Constants.FV_MENUITEM_MACRO int
Value:3
Constants.FV_MENUITEM_EXPANDOMA int
TIC Value:4
Constants.FP_ExpandOMaticParent int
Value:1934
Constants.FP_EnabledWhen int
Value:1935
Constants.FV_ENABLE_ALWAYS_ENABLE int
Value:1
Constants.FV_ENABLE_ALWAYS_DISABLE int
Value:2
Constants.FV_ENABLE_IN_PARA_TEXT int
Value:3
Constants.FV_ENABLE_IN_TEXT_LINE int
Value:4
Constants.FV_ENABLE_IS_TEXT_SEL int
Value:5
Constants.FV_ENABLE_IN_MATH int
Value:6
Constants.FV_ENABLE_IN_TEXT int
Value:7
Constants.FV_ENABLE_OBJ_PROPS int
Value:8
Constants.FV_ENABLE_IN_TABLE int
Value:9
Constants.FV_ENABLE_IN_TABLE_TITLE int
Value:10
Constants.FV_ENABLE_IN_CELL_TEXT int
Value:11
Constants.FV_ENABLE_IS_CELL int
Value:12
264
CONSTANTS
CHAPTER 5 OBJECT REFERENCE
Constants.FV_ENABLE_IS_CELLS int
Value:13
Constants.FV_ENABLE_IS_TABLE int
Value:14
Constants.FV_ENABLE_IS_OBJ int
Value:15
Constants.FV_ENABLE_IS_TEXT_FRAME int
Value:16
Constants.FV_ENABLE_IS_OR_IN_FRAM int
E Value:17
Constants.FV_ENABLE_IS_AFRAME int
Value:18
Constants.FV_ENABLE_IS_TEXT_INSET int
Value:19
Constants.FV_ENABLE_IS_GRAPHIC_INS int
ET Value:20
Constants.FV_ENABLE_IN_FLOW int
Value:21
Constants.FV_ENABLE_COPY int
Value:22
Constants.FV_ENABLE_COPY_FONT int
Value:23
Constants.FV_ENABLE_CAN_PASTE int
Value:24
Constants.FV_ENABLE_IS_VIEW_ONLY int
Value:25
Constants.FV_ENABLE_NEEDS_DOCP_O int
NLY Value:26
Constants.FV_ENABLE_NEEDS_BOOKP_ int
ONLY Value:27
Constants.FV_ENABLE_NEEDS_DOCP_O int
R_BOOKP Value:28
Constants.FV_ENABLE_BOOK_HAS_SELE int
CTION Value:29
265
CONSTANTS
CHAPTER 5 OBJECT REFERENCE
Constants.FV_ENABLE_DOC_OR_BOOK_ int
HAS_SELECTION Value:30
Constants.FP_Fcode int
Value:1936
Constants.FP_Fcodes int
Value:1937
Constants.FP_HelpLink int
Value:1938
Constants.FP_HasShiftOrUnshiftComman int
d Value:1939
Constants.FV_ITEM_HAS_SHIFT_COMM int
AND Value:1
Constants.FV_ITEM_HAS_UNSHIFT_COM int
MAND Value:2
Constants.FV_ITEM_HAS_NO_SHIFT_OR int
_UNSHIFT_COMMAND Value:3
Constants.FP_ShiftOrUnshiftCommand int
Value:1940
Constants.FP_Mode int
Value:1941
Constants.FV_MODE_MATH int
Value:1
Constants.FV_MODE_NONMATH int
Value:2
Constants.FV_MODE_ALL int
Value:3
Constants.FP_NextCommandInSession int
Value:1942
Constants.FP_Hypertext int
Value:1943
Constants.FP_NextTiInDoc int
Value:2050
Constants.FP_TiAutomaticUpdate int
Value:2051
266
CONSTANTS
CHAPTER 5 OBJECT REFERENCE
Constants.FV_UpdateAllClientTi int
Value:1
Constants.FV_UpdateAllAutomaticClient int
Ti Value:2
Constants.FV_UpdateAllManualClientTi int
Value:3
Constants.FP_LastUpdate int
Value:2052
Constants.FP_TiFile int
Value:2053
Constants.FP_TiMacEdition int
Value:2054
Constants.FP_ImportHint int
Value:2055
Constants.FP_TiLocked int
Value:2056
Constants.FP_TiFileModDate int
Value:2057
Constants.FP_TiIsNested int
Value:2058
Constants.FP_TiMainFlow int
Value:2059
Constants.FP_TiFlowName int
Value:2060
Constants.FP_TiFlowPageSpace int
Value:2061
Constants.FV_BODY_PAGE int
Value:0x00
Constants.FV_REFERENCE_PAGE int
Value:0x02
Constants.FP_TiFormat int
Value:2062
Constants.FP_TiRemovePageBreaks int
Value:2063
267
CONSTANTS
CHAPTER 5 OBJECT REFERENCE
Constants.FP_TiRemoveOverrides int
Value:2064
Constants.FP_TiTextEncoding int
Value:2073
Constants.FV_IsoLatin int
Value:1
Constants.FV_ASCII int
Value:2
Constants.FV_ANSI int
Value:3
Constants.FV_MacANSI int
Value:4
Constants.FV_JIS int
Value:5
Constants.FV_Shitf_JIS int
Value:6
Constants.FV_EUC int
Value:7
Constants.FV_BIG5 int
Value:8
Constants.FV_EUC_CNS int
Value:9
Constants.FV_GB int
Value:10
Constants.FV_HZ int
Value:11
Constants.FV_Korean int
Value:12
Constants.FP_TiEOLisEOP int
Value:2065
Constants.FP_TiTblTag int
Value:2066
Constants.FP_TiNumHeaderRows int
Value:2067
268
CONSTANTS
CHAPTER 5 OBJECT REFERENCE
Constants.FP_TiHeadersEmpty int
Value:2068
Constants.FP_TiByRows int
Value:2069
Constants.FP_TiSeparator int
Value:2070
Constants.FP_TiNumSeparators int
Value:2071
Constants.FP_TiNumCols int
Value:2072
Constants.FP_TiIsUnresolved int
Value:2075
Constants.FP_TiClientName int
Value:2076
Constants.FP_TiClientSource int
Value:2077
Constants.FP_TiClientType int
Value:2078
Constants.FP_TiClientData int
Value:2079
Constants.FP_TiClientUpdateSilent int
Value:2080
Constants.FP_ContentHeight int
Value:2219
Constants.FP_ParentTextFrame int
Value:2200
Constants.FP_PrevSubCol int
Value:2201
Constants.FP_NextSubCol int
Value:2202
Constants.FP_Overflowed int
Value:983
Constants.FP_FirstCombinedFontDefnIn int
Doc Value:2280
269
CONSTANTS
CHAPTER 5 OBJECT REFERENCE
Constants.FP_NextCombinedFontDefnIn int
Doc Value:2281
Constants.FP_BaseFamily int
Value:2282
Constants.FP_AllowBaseFamilyBoldedAn int
dObliqued Value:2283
Constants.FP_WesternFamily int
Value:2284
Constants.FP_WesternSize int
Value:2285
Constants.FP_WesternShift int
Value:2286
Constants.FP_CombinedFontFamily int
Value:2287
Constants.FS_FindText int
Value:1
Constants.FS_FindElementTag int
Value:2
Constants.FV_FindElemTag int
Value:0
Constants.FV_FindAttrName int
Value:1
Constants.FV_FindAttrValue int
Value:2
Constants.FV_NumFindElementItems int
Value:2+1
Constants.FS_FindCharFmt int
Value:3
Constants.FS_FindPgfTag int
Value:4
Constants.FS_FindCharTag int
Value:5
Constants.FS_FindTableTag int
Value:6
270
CONSTANTS
CHAPTER 5 OBJECT REFERENCE
Constants.FS_FindObject int
Value:8
Constants.FV_FindAnyMarker int
Value:0
Constants.FV_FindAnyXRef int
Value:1
Constants.FV_FindUnresolvedXRef int
Value:2
Constants.FV_FindAnyTextInset int
Value:3
Constants.FV_FindUnresolvedTextInset int
Value:4
Constants.FV_FindAnyPub int
Value:5
Constants.FV_FindAnyVariable int
Value:6
Constants.FV_FindAnchoredFrame int
Value:7
Constants.FV_FindFootnote int
Value:8
Constants.FV_FindAnyTable int
Value:9
Constants.FV_FindAutomaticHyphen int
Value:10
Constants.FV_FindAnyRubi int
Value:11
Constants.FV_FindPgfFormatOverride int
Value:12
Constants.FV_FindCharacterFormatOver int
ride Value:13
Constants.FV_FindTableFormatOverride int
Value:14
Constants.FS_FindMarkerOfType int
Value:9
271
CONSTANTS
CHAPTER 5 OBJECT REFERENCE
Constants.FS_FindMarkerText int
Value:10
Constants.FS_FindXRefWithFormat int
Value:11
Constants.FS_FindNamedVariable int
Value:12
Constants.FS_FindCondTextInCondTags int
Value:13
Constants.FS_FindCondTextNotInCondTa int
gs Value:14
Constants.FS_FindCustomizationFlags int
Value:15
Constants.FS_FindWrap int
Value:16
Constants.FS_SpellOptions int
Value:1000
Constants.FS_TwoInARowString int
Value:1001
Constants.FS_TextBeforeString int
Value:1002
Constants.FS_TextAfterString int
Value:1003
Constants.FS_WordContainString int
Value:1004
Constants.FS_SpellAction int
Value:1005
Constants.FV_CheckDocument int
Value:1
Constants.FV_CheckCurrentPage int
Value:2
Constants.FV_WriteUnknownWordsToFil int
e Value:3
Constants.FS_OutputFilePathName int
Value:1006
272
CONSTANTS
CHAPTER 5 OBJECT REFERENCE
Constants.FS_SpellWrap int
Value:1007
Constants.FS_NumSpellParams int
Value:(1007-1000+1)
Constants.FV_SpellMisspelling int
Value:1
Constants.FV_SpellCapitalization int
Value:2
Constants.FV_SpellRepeatedWord int
Value:3
Constants.FV_SpellRepeatedLetter int
Value:4
Constants.FV_SpellHyphenation int
Value:5
Constants.FV_SpellExtraSpace int
Value:6
Constants.FV_SpellSpaceAfter int
Value:7
Constants.FV_SpellSpaceBefore int
Value:8
Constants.FV_SpellStraightQuotes int
Value:9
Constants.FV_UserDictionary int
Value:1
Constants.FV_DocumentDictionary int
Value:2
Constants.FV_WriteDictionaryToFile int
Value:4
Constants.FV_MergeDictionaryContents int
Value:5
Constants.FV_SetDictionaryToNoneDicti int
onary Value:6
Constants.FV_ClearDocDictionary int
Value:7
273
CONSTANTS
CHAPTER 5 OBJECT REFERENCE
Constants.FV_ChangePersonalDictionary int
Value:8
Constants.FV_GetDictionaryStrings int
Value:9
Constants.FP_CursorData int
Value:2294
Constants.FP_CursorTypes int
Value:2295
Constants.FP_StructureCursorTypes int
Value:2296
Constants.FP_SecNumComputeMethod int
Value:915
Constants.FP_SectionNumStyle int
Value:916
Constants.FP_SectionNumber int
Value:917
Constants.FP_SectionNumText int
Value:918
Constants.FP_SubsecNumComputeMeth int
od Value:815
Constants.FP_SubsectionNumStyle int
Value:816
Constants.FP_SubsectionNumber int
Value:817
Constants.FP_SubsectionNumText int
Value:818
Constants.FP_DoNotGenerateErrorLog int
Value:819
Constants.FP_DocOpenClientEncountere int
dErrors Value:820
Constants.FP_OpenAndSaveXmlBookCo int
mponentDoc Value:822
Constants.FP_XmlIsBook int
Value:823
274
CONSTANTS
CHAPTER 5 OBJECT REFERENCE
Constants.FP_UseFMConsoleForErrorLog int
Value:825
Constants.FP_FMConsoleString int
Value:826
Constants.FP_IsTempOpenSave int
Value:827
Constants.FP_AllowNewFileURL int
Value:2416
Constants.FP_DoPostXSLTValidationOnEx int
port Value:2417
Constants.FP_DoNotExportInvalidXML int
Value:2418
Constants.FP_SuppressXMLParserWarni int
ngs Value:2419
Constants.FP_RemoveExtraWhiteSpaces int
OnXMLImport Value:2830
Constants.FP_NoMultiMediaInPDF int
Value:2831
Constants.FP_InsetGenericData int
Value:2832
Constants.FP_InTableSortOperation int
Value:2833
Constants.FP_InsetGfxName int
Value:2834
Constants.FP_InsetGfxPlayWindowInPdf int
Value:2835
Constants.FP_InsetGfxActiveInPdf int
Value:2836
Constants.FP_InsetJavaScriptAttached int
Value:2837
Constants.FP_InsetJavaScriptFile int
Value:2838
Constants.FP_InsetMonikerPath int
Value:2848
275
CONSTANTS
CHAPTER 5 OBJECT REFERENCE
Constants.FP_InsetMonikerFilePath int
Value:2849
Constants.FP_IsFateRun int
Value:2847
Constants.FP_DefaultVectorFormatForX int
MLExport Value:2874
Constants.FV_CmdOpenXmlElementId int
Value:821
Constants.FV_FileTypeBinaryDoc int
Value:1
Constants.FV_FileTypeBinaryBook int
Value:2
Constants.FV_FileTypeMif int
Value:3
Constants.FV_FileTypeXml int
Value:4
Constants.FV_FileTypeSgml int
Value:5
Constants.FV_FileTypeText int
Value:6
Constants.FV_FileTypeFilter int
Value:7
Constants.FV_FileTypeFolder int
Value:8
Constants.FV_FileTypeGeneral int
Value:9
Constants.FV_FileTypeErrorDoc int
Value:10
Constants.FV_FileTypeEquation int
Value:11
Constants.FV_FileTypeThesaurus int
Value:12
Constants.FV_FileTypeCompositeDoc int
Value:13
276
CONSTANTS
CHAPTER 5 OBJECT REFERENCE
Constants.FV_FileTypeSummaryDoc int
Value:14
Constants.FS_StructuredApplication int
Value:1
Constants.FS_Doctype int
Value:2
Constants.FS_PublicId int
Value:3
Constants.FS_SystemId int
Value:4
Constants.FS_Extension int
Value:5
Constants.FS_Visible int
Value:6
Constants.FS_NumNewXMLParams int
Value:6
Constants.FV_ListViewInit int
Value:1
Constants.FV_ListViewAddColumn int
Value:2
Constants.FV_ListViewAddRow int
Value:3
Constants.FV_ListViewDeleteAllRows int
Value:4
Constants.FV_ListViewReSortAllRows int
Value:5
Constants.FV_ListViewSetSortEnabled int
Value:6
Constants.FV_ListViewSelectFirstRow int
Value:7
Constants.FV_ListViewSelectRowFromCo int
lData Value:8
Constants.FV_ListViewSelectRowFromRo int
wID Value:9
277
CONSTANTS
CHAPTER 5 OBJECT REFERENCE
Constants.FV_ListViewActionMax int
Value:10
Constants.FV_ListViewInitNumParams int
Value:0
Constants.FV_ListViewAddColumnNumP int
arams Value:4
Constants.FV_ListViewAddColumnParam int
1 Value:3
Constants.FV_ListViewAddColumnParam int
2 Value:1
Constants.FV_ListViewAddColumnParam int
3 Value:1
Constants.FV_ListViewAddColumnParam int
4 Value:1
Constants.FV_ListViewAddRowNumPara int
ms Value:1
Constants.FV_ListViewAddRowParam1 int
Value:6
Constants.FV_ListViewDeleteAllRowsNu int
mParams Value:0
Constants.FV_ListViewReSortAllRowsNu int
mParams Value:0
Constants.FP_LineNumDistance int
Value:4001
Constants.FP_LineNumRestart int
Value:4002
Constants.FP_LineNumShow int
Value:4003
Constants.FP_LineNumFont int
Value:4004
Constants.FP_LineNumSize int
Value:4005
Constants.FP_LineNumColor int
Value:4006
278
CONSTANTS
CHAPTER 5 OBJECT REFERENCE
Constants.FP_IsDefault int
Value:2850
Constants.FP_IsStale int
Value:2851
Constants.FP_NextKeyCatalogInSession int
Value:2852
Constants.FP_NotLoaded int
Value:2853
Constants.FP_Source int
Value:2854
Constants.FP_SourceType int
Value:2855
Constants.FP_KeyCount int
Value:2860
Constants.FP_KeyCatalogClientName int
Value:2873
Constants.FV_KeySrcTypeNone int
Value:0
Constants.FV_KeySrcTypeDitamap int
Value:1
Constants.FV_DocKeyCatalogTypeDefaul int
t Value:0
Constants.FV_DocKeyCatalogTypeSpecifi int
ed Value:1
Constants.FV_DocKeyCatalogTypeNone int
Value:2
Constants.FV_DocKeyCatalogTypeMax int
Value:3
Constants.FV_KeydefVariableInfoLen int
Value:3
Constants.FV_KeydefVariableInfoTagPri int
mary Value:0
Constants.FV_KeydefVariableInfoTagSec int
ondary Value:1
279
CONSTANTS
CHAPTER 5 OBJECT REFERENCE
Constants.FV_KeydefVariableInfoText int
Value:2
Constants.FV_KeyDefFieldsTypePrimary int
Value:0
Constants.FV_KeyDefFieldsTypeAll int
Value:1
Constants.FV_KeyDefFieldsTypeMax int
Value:2
Constants.FV_KeydefKeyTag int
Value:1
Constants.FV_KeydefKeyTarget int
Value:2
Constants.FV_KeydefKeySrcFile int
Value:3
Constants.FV_KeydefKeyDuplicate int
Value:4
Constants.FV_KeyDefMaxPrimaryFields int
Value:4+1
Constants.FV_KeydefKeySrcType int
Value:5
Constants.FV_KeydefKeyVarList int
Value:6
Constants.FV_KeydefKeyDefaultText int
Value:7
Constants.FV_KeydefKeyFoundInRefFile int
Value:8
Constants.FV_KeydefKeyInValid int
Value:9
Constants.FV_KeydefKeyAttrs int
Value:10
Constants.FV_KeyDefMaxFields int
Value:11
Constants.FV_KeydefKeyTagType int
Value:3
280
CONSTANTS
CHAPTER 5 OBJECT REFERENCE
Constants.FV_KeydefKeyTargetType int
Value:3
Constants.FV_KeydefKeySrcFileType int
Value:3
Constants.FV_KeydefKeyDuplicateType int
Value:1
Constants.FV_KeydefKeySrcTypeType int
Value:1
Constants.FV_KeydefKeyVarListType int
Value:20
Constants.FV_KeydefKeyDefaultTextType int
Value:3
Constants.FV_KeydefKeyFoundInRefFileT int
ype Value:1
Constants.FV_KeydefKeyInValidType int
Value:1
Constants.FV_KeydefKeyAttrsType int
Value:21
Constants.FV_KeyDefFieldSize int
Value:2
Constants.FF_DUPLICATE_KEY_DEFINITI int
ON Value:0x01
Constants.FF_FOUND_IN_REFERENCED_ int
FILE Value:0x02
Constants.FF_INVALID_KEY int
Value:0x04
Constants.FV_DITAObjTypeAuto int
Value:0
Constants.FV_DITAObjTypeConref int
Value:1
Constants.FV_DITAObjTypeXref int
Value:2
Constants.FV_DITAObjTypeLink int
Value:3
281
CONSTANTS
CHAPTER 5 OBJECT REFERENCE
Constants.FV_DITAObjTypeTopicref int
Value:4
Constants.FV_DITAObjTypeTopicsetref int
Value:5
Constants.FV_DITAObjTypeMax int
Value:6
Constants.FF_DITAUpdateAllConrefs int
Value:0x01
Constants.FF_DITAUpdateAllXrefs int
Value:0x02
Constants.FF_DITAUpdateAllLinks int
Value:0x04
Constants.FF_DITAUpdateAllTopicrefs int
Value:0x08
Constants.FF_DITAUpdateAllTopicsetrefs int
Value:0x10
Constants.FF_DITAUpdateAllReferences int
Value:(0x01|0x02|0x04|0x08|0x10)
Constants.FP_FirstDITAConrefElementIn int
Doc Value:2861
Constants.FP_FirstDITAXrefElementInDo int
c Value:2862
Constants.FP_FirstDITALinkElementInDo int
c Value:2863
Constants.FP_FirstDITATopicrefElementIn int
Doc Value:2864
Constants.FP_FirstDITATopicsetrefEleme int
ntInDoc Value:2865
Constants.FP_NextDITAConrefElementIn int
Doc Value:2866
Constants.FP_NextDITAXrefElementInDo int
c Value:2867
Constants.FP_NextDITALinkElementInDo int
c Value:2868
282
CONSTANTS
CHAPTER 5 OBJECT REFERENCE
Constants.FP_NextDITATopicrefElementI int
nDoc Value:2869
Constants.FP_NextDITATopicsetrefEleme int
ntInDoc Value:2870
Constants.FV_DITA_TYPE_GENERAL int
Value:1
Constants.FV_DITA_TYPE_RELTABLE int
Value:2
Constants.FV_DITA_TYPE_KEYDEF int
Value:3
Constants.FV_DITA_TYPE_TOPICGROUP int
Value:4
Constants.FV_DITA_TYPE_TOPICHEAD int
Value:5
Constants.FV_DITA_TYPE_TOPICSETREF int
Value:6
Constants.FV_DITA_TYPE_TOPICSET int
Value:7
Constants.FV_DITA_TYPE_MAPREF int
Value:8
Constants.FV_DITA_TYPE_NAVREF int
Value:9
Constants.FV_DITA_TYPE_TITLE int
Value:10
Constants.FV_DITA_TYPE_TOPICREF int
Value:11
Constants.FV_DITA_TYPE_ANCHOR int
Value:12
Constants.FV_ENUMERATE_DITACOMP_ int
TOPICREF Value:1 << 1
Constants.FV_ENUMERATE_DITACOMP_ int
MAPREF Value:1 << 2
Constants.FV_ENUMERATE_DITACOMP_ int
TOPICSET Value:1 << 3
283
CONSTANTS
CHAPTER 5 OBJECT REFERENCE
Constants.FV_ENUMERATE_DITACOMP_ int
TOPICSETREF Value:1 << 4
Constants.FV_ENUMERATE_DITACOMP_ int
KEYDEF Value:1 << 5
Constants.FV_ENUMERATE_COMP_CHIL int
DMAP_COMPONENTS Value:1 << 6
Constants.FV_ENUMERATE_COMP_CHIL int
DBOOK_COMPONENTS Value:1 << 7
Constants.FV_ENUMERATE_BOOKCOMP int
_FOLDER Value:1 << 8
Constants.FV_ENUMERATE_BOOKCOMP int
_GROUP Value:1 << 9
Constants.FV_ENUMERATE_COMP_FOLD int
ER_COMPONENTS Value:1 << 10
Constants.FV_ENUMERATE_COMP_GRO int
UP_COMPONENTS Value:1 << 11
Constants.FV_ENUMERATE_COMPFILE_F int
MBINARY Value:1 << 12
Constants.FV_ENUMERATE_COMPFILE_F int
MMIF Value:1 << 13
Constants.FV_ENUMERATE_COMPFILE_B int
OOKBINARY Value:1 << 14
Constants.FV_ENUMERATE_COMPFILE_B int
OOKMIF Value:1 << 15
Constants.FV_ENUMERATE_COMPFILE_X int
ML Value:1 << 16
Constants.FMV_CMDSUPPORTED int
Value:-1
Constants.FF_UNTAGGED_ASK int
Value:0
Constants.FF_UNTAGGED_UNCOND int
Value:1
Constants.FF_UNTAGGED_DELETE int
Value:2
284
CONSTANTS
CHAPTER 5 OBJECT REFERENCE
Constants.FS_IteratorItemFieldBookId int
Value:1
Constants.FS_IteratorItemFieldDocId int
Value:2
Constants.FS_IteratorItemFieldObjId int
Value:3
Constants.FS_IteratorItemMaxFields int
Value:3
Constants.FS_IterParamParseBookInBoo int
k Value:1
Constants.FS_IterParamParseMapInBook int
Value:2
Constants.FS_IterParamSkipExcludedBoo int
kComponents Value:3
Constants.FS_IterParamGetBookCompon int
entFolder Value:4
Constants.FS_IterParamGetBookCompon int
entGroup Value:5
Constants.FS_IterParamGetBookCompon int
entRefBook Value:6
Constants.FS_IterParamGetBookCompon int
entRefMap Value:7
Constants.FS_IterParamParseMapInMap int
Value:8
Constants.FS_IterParamSkipResourceOnl int
yTopicrefs Value:9
Constants.FS_IterParamSkipNonPrintTop int
icrefs Value:10
Constants.FS_IterParamSkipTopicsetrefs int
Value:11
Constants.FS_IterParamGetMapRef int
Value:12
Constants.FS_NumIteratorParams int
Value:12
285
CONSTANTS
CHAPTER 5 OBJECT REFERENCE
Constants.FV_CMSOpNone int
Value:FV_CMSOpNone
Constants.FV_CMSOpItemUpdated int
Value:FV_CMSOpItemUpdated
Constants.FV_CMSOpDependentsUpdat int
ed Value:FV_CMSOpDependentsUpdated
Constants.FV_CMSOpDependentsDelete int
d Value:FV_CMSOpDependentsDeleted
Constants.FV_CMSOpItemDeleted int
Value:FV_CMSOpItemDeleted
Constants.FV_CMSOpChildAdded int
Value:FV_CMSOpChildAdded
Constants.FV_CMSOpRootUpdated int
Value:FV_CMSOpRootUpdated
Constants.FP_CMSItemProperty_Min int
Value:FP_CMSItemProperty_Min
Constants.FP_CMSItemProperty_ItemNa int
me Value:FP_CMSItemProperty_ItemName
Constants.FP_CMSItemProperty_ItemSe int
rverPath Value:FP_CMSItemProperty_ItemServerPath
Constants.FP_CMSItemProperty_ItemLo int
calPath Value:FP_CMSItemProperty_ItemLocalPath
Constants.FP_CMSItemProperty_ItemIsC int
heckedOut Value:FP_CMSItemProperty_ItemIsCheckedOut
Constants.FP_CMSItemProperty_ItemCh int
eckedOutByCurrentUser Value:FP_CMSItemProperty_ItemCheckedOutByCurrentU
ser
Constants.FP_CMSItemProperty_ItemIsC int
ontainer Value:FP_CMSItemProperty_ItemIsContainer
Constants.FP_CMSItemProperty_ItemTy int
pe Value:FP_CMSItemProperty_ItemType
Constants.FP_CMSItemProperty_ItemFil int
eType Value:FP_CMSItemProperty_ItemFileType
286
CONSTANTS
CHAPTER 5 OBJECT REFERENCE
Constants.FP_CMSItemProperty_ItemVe int
rsion Value:FP_CMSItemProperty_ItemVersion
Constants.FP_CMSItemProperty_Max int
Value:FP_CMSItemProperty_Max
Constants.FV_CMSItemTypeValue_Min int
Value:FV_CMSItemTypeValue_Min
Constants.FV_CMSItemTypeValue_Root int
Value:FV_CMSItemTypeValue_Root
Constants.FV_CMSItemTypeValue_Folde int
r Value:FV_CMSItemTypeValue_Folder
Constants.FV_CMSItemTypeValue_File int
Value:FV_CMSItemTypeValue_File
Constants.FV_CMSItemTypeValue_Gene int
ral Value:FV_CMSItemTypeValue_General
Constants.FV_CMSItemTypeValue_Max int
Value:FV_CMSItemTypeValue_Max
Constants.FV_CMSItemFileTypeValue_M int
in Value:FV_CMSItemFileTypeValue_Min
Constants.FV_CMSItemFileTypeValue_X int
ml Value:FV_CMSItemFileTypeValue_Xml
Constants.FV_CMSItemFileTypeValue_F int
mDoc Value:FV_CMSItemFileTypeValue_FmDoc
Constants.FV_CMSItemFileTypeValue_M int
if Value:FV_CMSItemFileTypeValue_Mif
Constants.FV_CMSItemFileTypeValue_Di int
taMap Value:FV_CMSItemFileTypeValue_DitaMap
Constants.FV_CMSItemFileTypeValue_Di int
taTopic Value:FV_CMSItemFileTypeValue_DitaTopic
Constants.FV_CMSItemFileTypeValue_F int
mBook Value:FV_CMSItemFileTypeValue_FmBook
Constants.FV_CMSItemFileTypeValue_Te int
xt Value:FV_CMSItemFileTypeValue_Text
Constants.FV_CMSItemFileTypeValue_I int
mg Value:FV_CMSItemFileTypeValue_Img
287
CONSTANTS
CHAPTER 5 OBJECT REFERENCE
Constants.FV_CMSItemFileTypeValue_G int
eneral Value:FV_CMSItemFileTypeValue_General
Constants.FV_CMSItemFileTypeValue_M int
ax Value:FV_CMSItemFileTypeValue_Max
Constants.FA_CMSCommandMin int
Value:FA_CMSCommandMin
Constants.FA_CMSCreateConnection int
Value:FA_CMSCreateConnection
Constants.FA_CMSSetRootObject int
Value:FA_CMSSetRootObject
Constants.FA_CMSCreateConnMgrUI int
Value:FA_CMSCreateConnMgrUI
Constants.FA_CMSGetItemFromPath int
Value:FA_CMSGetItemFromPath
Constants.FA_CMSCloseConnection int
Value:FA_CMSCloseConnection
Constants.FA_CMSGetCommandMaxOp int
Code Value:FA_CMSGetCommandMaxOpCode
Constants.FA_CMSGetPropertyMaxOpCo int
de Value:FA_CMSGetPropertyMaxOpCode
Constants.FA_CMSObjectCheckout int
Value:FA_CMSObjectCheckout
Constants.FA_CMSObjectCheckin int
Value:FA_CMSObjectCheckin
Constants.FA_CMSObjectCancelCheckou int
t Value:FA_CMSObjectCancelCheckout
Constants.FA_CMSObjectEdit int
Value:FA_CMSObjectEdit
Constants.FA_CMSObjectOpenReadOnly int
Value:FA_CMSObjectOpenReadOnly
Constants.FA_CMSObjectDelete int
Value:FA_CMSObjectDelete
Constants.FA_CMSObjectShowVersion int
Value:FA_CMSObjectShowVersion
288
CONSTANTS
CHAPTER 5 OBJECT REFERENCE
Constants.FA_CMSObjectShowDepende int
nts Value:FA_CMSObjectShowDependents
Constants.FA_CMSObjectShowPropertie int
s Value:FA_CMSObjectShowProperties
Constants.FA_CMSObjectShowCheckOut int
Files Value:FA_CMSObjectShowCheckOutFiles
Constants.FA_CMSObjectDownload int
Value:FA_CMSObjectDownload
Constants.FA_CMSObjectDownloadItem int
Value:FA_CMSObjectDownloadItem
Constants.FA_CMSObjectDownloadForO int
pen Value:FA_CMSObjectDownloadForOpen
Constants.FA_CMSObjectUploadFile int
Value:FA_CMSObjectUploadFile
Constants.FA_CMSObjectUploadFolder int
Value:FA_CMSObjectUploadFolder
Constants.FA_CMSObjectGetChildren int
Value:FA_CMSObjectGetChildren
Constants.FA_CMSObjectIsSame int
Value:FA_CMSObjectIsSame
Constants.FA_CMSObjectRefresh int
Value:FA_CMSObjectRefresh
Constants.FA_CMSSimpleSearch int
Value:FA_CMSSimpleSearch
Constants.FA_CMSAdvancedSearch int
Value:FA_CMSAdvancedSearch
Constants.FA_CMSGetItems int
Value:FA_CMSGetItems
Constants.FA_CMSBuildContextMenu int
Value:FA_CMSBuildContextMenu
Constants.FA_CMSIsValidCommand int
Value:FA_CMSIsValidCommand
Constants.FA_CMSCommandMax int
Value:FA_CMSCommandMax
289
CONSTANTS
CHAPTER 5 OBJECT REFERENCE
Constants.FV_CMSMenu_Min int
Value:FV_CMSMenu_Min
Constants.FV_CMSMenu_Is_Item int
Value:FV_CMSMenu_Is_Item
Constants.FV_CMSMenu_Is_Disabled int
Value:FV_CMSMenu_Is_Disabled
Constants.FV_CMSMenu_Is_Separator int
Value:FV_CMSMenu_Is_Separator
Constants.FV_CMSMenu_Is_SubMenu int
Value:FV_CMSMenu_Is_SubMenu
Constants.FV_CMSMenu_Max int
Value:FV_CMSMenu_Max
Constants.FV_CMSVersion_Min int
Value:FV_CMSVersion_Min
Constants.FV_CMSSameVersion int
Value:FV_CMSSameVersion
Constants.FV_CMSMinorVersion int
Value:FV_CMSMinorVersion
Constants.FV_CMSMajorVersion int
Value:FV_CMSMajorVersion
Constants.FV_CMSVersion_Max int
Value:FV_CMSVersion_Max
Constants.FV_CMSCheckoutUI_Id_Show int
Dependents Value:FV_CMSCheckoutUI_Id_ShowDependents
Constants.FV_CMSCheckinUI_Id_SameV int
ersion Value:FV_CMSCheckinUI_Id_SameVersion
Constants.FV_CMSCheckinUI_Id_MinorV int
ersion Value:FV_CMSCheckinUI_Id_MinorVersion
Constants.FV_CMSCheckinUI_Id_MajorV int
ersion Value:FV_CMSCheckinUI_Id_MajorVersion
Constants.FV_CMSCheckinUI_Id_Version int
Label Value:FV_CMSCheckinUI_Id_VersionLabel
Constants.FV_CMSCheckinUI_Id_Descrip int
tion Value:FV_CMSCheckinUI_Id_Description
290
CONSTANTS
CHAPTER 5 OBJECT REFERENCE
Constants.FV_CMSCheckinUI_Id_Checki int
nComment Value:FV_CMSCheckinUI_Id_CheckinComment
Constants.FV_CMSCheckinUI_Id_MakeT int
hisCurrentVersion Value:FV_CMSCheckinUI_Id_MakeThisCurrentVersion
Constants.FV_CMSDeleteUI_DeleteAllVe int
rsion Value:FV_CMSDeleteUI_DeleteAllVersion
Constants.FV_CMSDeleteUI_DeleteAllDe int
pendents Value:FV_CMSDeleteUI_DeleteAllDependents
Constants.FV_CMSCommandId_Min int
Value:FV_CMSCommandId_Min
Constants.FV_CMSCommandNameId int
Value:FV_CMSCommandNameId
Constants.FV_CMSCommandConnTypeId int
Value:FV_CMSCommandConnTypeId
Constants.FV_CMSCommandServerId int
Value:FV_CMSCommandServerId
Constants.FV_CMSCommandUserNameI int
d Value:FV_CMSCommandUserNameId
Constants.FV_CMSCommandPasswordId int
Value:FV_CMSCommandPasswordId
Constants.FV_CMSCommandUserField1 int
Value:FV_CMSCommandUserField1
Constants.FV_CMSCommandRepositoryI int
d Value:FV_CMSCommandRepositoryId
Constants.FV_CMSCommandUserField2 int
Value:FV_CMSCommandUserField2
Constants.FV_CMSCommandFilePathId int
Value:FV_CMSCommandFilePathId
Constants.FV_CMSCommandSearchStrin int
gId Value:FV_CMSCommandSearchStringId
Constants.FV_CMSCommandAdvancedS int
earchStringId Value:FV_CMSCommandAdvancedSearchStringId
Constants.FV_CMSCommandId int
Value:FV_CMSCommandId
291
CONSTANTS
CHAPTER 5 OBJECT REFERENCE
Constants.FV_CMSContextMenuId int
Value:FV_CMSContextMenuId
Constants.FV_CMSContextMenuString int
Value:FV_CMSContextMenuString
Constants.FV_CMSSilentOperation int
Value:FV_CMSSilentOperation
Constants.FV_CMSCommandCheckoutW int
ithDescendentId Value:FV_CMSCommandCheckoutWithDescendentId
Constants.FV_CMSCommandCheckinMa int
keCurrentVersionId Value:FV_CMSCommandCheckinMakeCurrentVersionId
Constants.FV_CMSCommandCheckinKee int
pLocalCopyId Value:FV_CMSCommandCheckinKeepLocalCopyId
Constants.FV_CMSCommandCheckinMin int
orVersionId Value:FV_CMSCommandCheckinMinorVersionId
Constants.FV_CMSCommandCheckinVer int
sionLabelId Value:FV_CMSCommandCheckinVersionLabelId
Constants.FV_CMSCommandCheckinDes int
criptionId Value:FV_CMSCommandCheckinDescriptionId
Constants.FV_CMSCommandCheckinCo int
mmentId Value:FV_CMSCommandCheckinCommentId
Constants.FV_CMSCommandDeleteAllVe int
rsionId Value:FV_CMSCommandDeleteAllVersionId
Constants.FV_CMSCommandDeleteAllDe int
pendentsId Value:FV_CMSCommandDeleteAllDependentsId
Constants.FV_CMSCommandOpenRead int
OnlyId Value:FV_CMSCommandOpenReadOnlyId
Constants.FV_CMSCommandSilentOpenI int
d Value:FV_CMSCommandSilentOpenId
Constants.FV_CMSCommandId_Max int
Value:FV_CMSCommandId_Max
Constants.FE_CMSNameAlreadyRegister int
ed Value:-112
Constants.FE_CMSBadSessionId int
Value:-113
292
CONSTANTS
CHAPTER 5 OBJECT REFERENCE
Constants.FE_CMSBadObjectId int
Value:-114
Constants.FE_CMSSessionFailed int
Value:-115
Constants.FE_CMSBadCommandId int
Value:-116
Constants.FE_CMSObjectCreationFailed int
Value:-117
Constants.FE_CMSRootObjectExists int
Value:-118
Constants.FE_CMSBadItemFileType int
Value:-119
Constants.FE_CMSBadItemType int
Value:-120
Constants.FE_CMSBadItemContainerTyp int
e Value:-121
Constants.FE_CMSSessionCreationFailed int
Value:-122
Constants.FE_CMSIsValidCMSCommand int
Value:-123
Constants.FE_CMSFailedLogin int
Value:-150
Constants.FE_CMSFailedCheckout int
Value:-151
Constants.FE_CMSFailedCheckin int
Value:-152
Constants.FE_CMSFailedCancelCheckout int
Value:-153
Constants.FE_CMSFailedDelete int
Value:-154
Constants.FE_CMSFailedOpenFile int
Value:-155
Constants.FE_CMSFailedUploadObject int
Value:-156
293
DOC
CHAPTER 5 OBJECT REFERENCE
Constants.FE_CMSFailedDownloadObjec int
t Value:-157
Constants.FE_CMSFailedGetItemFrompa int
th Value:-158
Constants.FE_CMSFailedLogout int
Value:-159
Doc
294
DOC
CHAPTER 5 OBJECT REFERENCE
295
DOC
CHAPTER 5 OBJECT REFERENCE
296
DOC
CHAPTER 5 OBJECT REFERENCE
297
DOC
CHAPTER 5 OBJECT REFERENCE
298
DOC
CHAPTER 5 OBJECT REFERENCE
299
DOC
CHAPTER 5 OBJECT REFERENCE
300
DOC
CHAPTER 5 OBJECT REFERENCE
301
DOC
CHAPTER 5 OBJECT REFERENCE
302
DOC
CHAPTER 5 OBJECT REFERENCE
303
DOC
CHAPTER 5 OBJECT REFERENCE
304
DOC
CHAPTER 5 OBJECT REFERENCE
305
DOC
CHAPTER 5 OBJECT REFERENCE
306
DOC
CHAPTER 5 OBJECT REFERENCE
307
DOC
CHAPTER 5 OBJECT REFERENCE
308
DOC
CHAPTER 5 OBJECT REFERENCE
309
DOC
CHAPTER 5 OBJECT REFERENCE
310
DOC
CHAPTER 5 OBJECT REFERENCE
• Constants.FV_HypertextMatrixCommandIn-
valid (251)- One of the commands in the
reference page flow for a matrix
command has a parse or validation
error.
Constants.FV_HypertextFlowMissing-
Lines (252) - The reference flow for a
matrix or popup command is missing
one or more lines.
Constants.FV_HypertextNoNamedFlow
(260) - Cannot find the named reference
flow for a matrix or popup command.
Constants.FV_HypertextRecursiveFlow
(261) - The reference flow for a matrix or
popup command contains nested popup
or matrix commands that name a par-
ent reference flow.
Constants.FV_HypertextMissingPopup-
Marker (270) - At least one entry in the
popup command's reference flow has
no hypertext marker in it.
Constants.FV_HypertextMissingPop-
upLabelItem (271) - One entry in the
popup command's reference flow has
no text in it.
Constants.FV_HypertextEmptyLineIn-
MiddleOfPopup (272) - One entry in the
popup command's reference flow has
no text in it.
Constants.FV_HypertextCommandIlle-
galWithinPopup (273) - Invalid com-
mand in the popup command's
reference flow; for example, matrix or
newlink.
Constants.FV_HypertextFcodeInvalid
(280)- Invalid FCode in the hypertext
command.
HypertextParseBadParam int Denotes the index into the string list
contained in the HypertextParsedArgs
property, in case of a parser error.
311
DOC
CHAPTER 5 OBJECT REFERENCE
312
DOC
CHAPTER 5 OBJECT REFERENCE
313
DOC
CHAPTER 5 OBJECT REFERENCE
• Constants.FV_CmdOpenLink (22) -
openlink command
Constants.FV_CmdOpenLinkFitWin (23)
- openlinkfitwin command
Constants.FV_CmdOpenNew (24) -
opennew command
Constants.FV_CmdOpenObjectId (25) -
openObjectId command
Constants.FV_CmdOpenObjectIdFitWin
(26) - openObjectIdfitwin com-
mand
Constants.FV_CmdOpenPage (27) -
openpage command
Constants.FV_CmdPopup (28) - popup
command
Constants.FV_CmdPreviousLink (29) -
previouslink command
Constants.FV_CmdPreviousLinkFitWin
(30) - previouslinkfitwin com-
mand
Constants.FV_CmdQuit (31) - quit
command
Constants.FV_CmdQuitAll (32) -
quitall command
314
DOC
CHAPTER 5 OBJECT REFERENCE
315
DOC
CHAPTER 5 OBJECT REFERENCE
316
DOC
CHAPTER 5 OBJECT REFERENCE
317
DOC
CHAPTER 5 OBJECT REFERENCE
318
DOC
CHAPTER 5 OBJECT REFERENCE
319
DOC
CHAPTER 5 OBJECT REFERENCE
320
DOC
CHAPTER 5 OBJECT REFERENCE
321
DOC
CHAPTER 5 OBJECT REFERENCE
322
DOC
CHAPTER 5 OBJECT REFERENCE
323
DOC
CHAPTER 5 OBJECT REFERENCE
324
DOC
CHAPTER 5 OBJECT REFERENCE
325
DOC
CHAPTER 5 OBJECT REFERENCE
326
DOC
CHAPTER 5 OBJECT REFERENCE
327
DOC
CHAPTER 5 OBJECT REFERENCE
328
DOC
CHAPTER 5 OBJECT REFERENCE
329
DOC
CHAPTER 5 OBJECT REFERENCE
330
DOC
CHAPTER 5 OBJECT REFERENCE
331
DOC
CHAPTER 5 OBJECT REFERENCE
332
DOC
CHAPTER 5 OBJECT REFERENCE
333
DOC
CHAPTER 5 OBJECT REFERENCE
334
DOC
CHAPTER 5 OBJECT REFERENCE
335
DOC
CHAPTER 5 OBJECT REFERENCE
336
DOC
CHAPTER 5 OBJECT REFERENCE
337
DOC
CHAPTER 5 OBJECT REFERENCE
338
DOC
CHAPTER 5 OBJECT REFERENCE
339
DOC
CHAPTER 5 OBJECT REFERENCE
340
DOC
CHAPTER 5 OBJECT REFERENCE
341
DOC
CHAPTER 5 OBJECT REFERENCE
342
DOC
CHAPTER 5 OBJECT REFERENCE
343
DOC
CHAPTER 5 OBJECT REFERENCE
Doc methods
AddNewBuildExpr, AddText, CenterOnText, Clear, ClearAllChangebars, Close, Compare, Copy, Cut,
DeleteBuildExpr, DeleteText, DeleteUnusedCharFmt, DeleteUnusedFmts, DeleteUnusedPgfFmt, Dele-
teUnusedTblFmt, DemoteElement, ElementLocToTextLoc, Find, GetActiveBuildExpr, GetBuildExpr,
GetBuildExprCatalog, GetNamedAttrCondExpr, GetNamedCharFmt, GetNamedColor, GetNamedCom-
binedFontDefn, GetNamedCondFmt, GetNamedElementDef, GetNamedFmtChangeList, GetNamed-
MarkerType, GetNamedMasterPage, GetNamedObject, GetNamedPgfFmt, GetNamedRefPage,
GetNamedRulingFmt, GetNamedTblFmt, GetNamedUnanchoredFrame, GetNamedVarFmt, GetNamedX-
RefFmt, GetProps, GetTextForRange, GetTextForRange2, GetTextPropVal, GetTextProps, GetTextVal,
GetUniqueObject, HypertextCommand, Import, MergeIntoFirst, MergeIntoLast, NewAnchoredAFrame,
NewAnchoredFn, NewAnchoredFormattedObject, NewAnchoredFormattedTbl, NewAnchoredFormat-
tedVar, NewAnchoredFormattedXRef, NewAnchoredMarker, NewAnchoredObject, NewAnchoredTbl,
NewAnchoredTiApiClient, NewArc, NewEllipse, NewFlow, NewGraphicObject, NewGroup, NewInset,
NewInlineComponentOfType, NewLine, NewMath,NewMathML, NewNamedAttrCondExpr, NewNamed-
CharFmt, NewNamedColor, NewNamedCombinedFontDefn, NewNamedCondFmt, NewNamedEle-
mentDef, NewNamedFmtChangeList, NewNamedMarkerType, NewNamedMasterPage,
NewNamedObject, NewNamedPgfFmt, NewNamedRefPage, NewNamedRulingFmt, NewNamedTblFmt,
NewNamedVarFmt, NewNamedXRefFmt, NewPolygon, NewPolyline, NewRectangle, NewRoundRect,
NewSeriesBodyPage, NewSeriesObject, NewSeriesPgf, NewTable, NewTextFrame, NewTextLine,
NewUnanchoredFrame, ObjectValid, Paste, PromoteElement, QuickSelect, Redisplay, Reformat, Rehy-
phenate, ResetEqnSettings, ResetReferenceFrames, RestartPgfNumbering, Save, ScrollToText, SetActive-
BuildExpr, SetElementRange, SetProps, SetTextPropVal, SetTextProps, SetTextVal, SilentPrintDoc,
SimpleImportElementDefs, SimpleImportFormats, SimpleSave, SplitElement, TextLocToElementLoc,
344
ELEMENT
CHAPTER 5 OBJECT REFERENCE
Element
345
ELEMENT
CHAPTER 5 OBJECT REFERENCE
346
ELEMENT
CHAPTER 5 OBJECT REFERENCE
347
ELEMENT
CHAPTER 5 OBJECT REFERENCE
348
ELEMENT
CHAPTER 5 OBJECT REFERENCE
349
ELEMENT
CHAPTER 5 OBJECT REFERENCE
350
ELEMENT
CHAPTER 5 OBJECT REFERENCE
351
ELEMENT
CHAPTER 5 OBJECT REFERENCE
352
ELEMENTCATALOGENTRIES
CHAPTER 5 OBJECT REFERENCE
Element methods
Delete, GetAttributes, GetProps, GetText, ObjectValid, SetProps.
ElementCatalogEntries
An Array of ElementCatalogEntry objects with integer indexing and a length property.
ElementCatalogEntries methods
concat, pop, push.
353
ELEMENTCATALOGENTRY
CHAPTER 5 OBJECT REFERENCE
ElementCatalogEntry
ElementCatalogEntry methods
ElementCatalogEntry.
ElementDef
354
ELEMENTDEF
CHAPTER 5 OBJECT REFERENCE
355
ELEMENTDEF
CHAPTER 5 OBJECT REFERENCE
356
ELEMENTLOC
CHAPTER 5 OBJECT REFERENCE
ElementDef methods
Delete, ElementDefIsText, GetAttributeDefs, GetProps, NewElement, NewElementInHierarchy, NewFirst-
PgfRules, NewLastPgfRules, NewObjectFmtRules, NewPrefixRules, NewSuffixRules, NewTextFmtRules,
ObjectValid, SetProps, WrapElement.
ElementLoc
357
ELEMENTRANGE
CHAPTER 5 OBJECT REFERENCE
ElementLoc methods
ElementLoc.
ElementRange
ElementRange methods
ElementRange.
Ellipse
358
ELLIPSE
CHAPTER 5 OBJECT REFERENCE
359
ELLIPSE
CHAPTER 5 OBJECT REFERENCE
360
ELLIPSE
CHAPTER 5 OBJECT REFERENCE
361
FCODES
CHAPTER 5 OBJECT REFERENCE
Ellipse methods
Delete, GetProps, ObjectValid, SetProps.
FCodes
FCodes.NULLINPUT NULLINPUT
Value-1
FCodes.KBD_INPUT KBD_INPUT
Value1
FCodes.START_DIALOG START_DIALOG
Value0xC100
FCodes.END_DIALOG END_DIALOG
Value0xC200
FCodes.START_WINDOW START_WINDOW
Value0xC400
FCodes.END_WINDOW END_WINDOW
Value0xC500
FCodes.LEAVE_DOC LEAVE_DOC
Value0xC600
FCodes.SERVER_CANCEL SERVER_CANCEL
Value0xC001
362
FCODES
CHAPTER 5 OBJECT REFERENCE
FCodes.SERVER_QUERY SERVER_QUERY
Value0xC002
FCodes.MENU_BARSTART MENU_BARSTART
Value0xC301
FCodes.MENU_WAITBIT MENU_WAITBIT
Value0x0010
FCodes.MENU_DOWNWAIT MENU_DOWNWAIT
Value0xC312
FCodes.MENU_RIGHTWAIT MENU_RIGHTWAIT
Value0xC313
FCodes.MENU_DOWN MENU_DOWN
Value0xC304
FCodes.MENU_RIGHT MENU_RIGHT
Value0xC305
FCodes.MENU_DONE MENU_DONE
Value0xC30F
FCodes.KBD_GBL_START KBD_GBL_START
Value0x100
FCodes.CSR_HOME CSR_HOME
Value0x100
FCodes.CSR_UP CSR_UP
Value0x101
FCodes.CSR_DOWN CSR_DOWN
Value0x102
FCodes.CSR_RIGHT CSR_RIGHT
Value0x103
FCodes.CSR_LEFT CSR_LEFT
Value0x104
FCodes.CSR_BOL CSR_BOL
Value0x105
FCodes.CSR_EOL CSR_EOL
Value0x106
FCodes.CSR_BOW CSR_BOW
Value0x107
363
FCODES
CHAPTER 5 OBJECT REFERENCE
FCodes.CSR_EOW CSR_EOW
Value0x108
FCodes.CSR_BOS CSR_BOS
Value0x109
FCodes.CSR_EOS CSR_EOS
Value0x10A
FCodes.CSR_BOP CSR_BOP
Value0x10B
FCodes.CSR_EOP CSR_EOP
Value0x10C
FCodes.CSR_TOTR CSR_TOTR
Value0x10D
FCodes.CSR_BOTR CSR_BOTR
Value0x10E
FCodes.CSR_TOP CSR_TOP
Value0x10F
FCodes.CSR_BOT CSR_BOT
Value0x110
FCodes.DEL_CHARBWD DEL_CHARBWD
Value0x112
FCodes.DEL_CHARFWD DEL_CHARFWD
Value0x113
FCodes.DEL_BOW DEL_BOW
Value0x114
FCodes.DEL_EOW DEL_EOW
Value0x115
FCodes.DEL_EOL DEL_EOL
Value0x116
FCodes.DEL_EOS DEL_EOS
Value0x117
FCodes.DEL_SEL DEL_SEL
Value0x118
FCodes.DEL_BOL DEL_BOL
Value0x119
364
FCODES
CHAPTER 5 OBJECT REFERENCE
FCodes.KBD_KERNUP KBD_KERNUP
Value0x11A
FCodes.KBD_KERNDOWN KBD_KERNDOWN
Value0x11B
FCodes.KBD_KERNLEFT KBD_KERNLEFT
Value0x11C
FCodes.KBD_KERNRIGHT KBD_KERNRIGHT
Value0x11D
FCodes.KBD_KERNHOME KBD_KERNHOME
Value0x11E
FCodes.KBD_KERNUP6 KBD_KERNUP6
Value0x121
FCodes.KBD_KERNDOWN6 KBD_KERNDOWN6
Value0x122
FCodes.KBD_KERNLEFT6 KBD_KERNLEFT6
Value0x123
FCodes.KBD_KERNRIGHT6 KBD_KERNRIGHT6
Value0x124
FCodes.KBD_OBJUP KBD_OBJUP
Value0x125
FCodes.KBD_OBJDOWN KBD_OBJDOWN
Value0x126
FCodes.KBD_OBJLEFT KBD_OBJLEFT
Value0x127
FCodes.KBD_OBJRIGHT KBD_OBJRIGHT
Value0x128
FCodes.CSR_NEXT_BOW CSR_NEXT_BOW
Value0x140
FCodes.CSR_NEXT_BOS CSR_NEXT_BOS
Value0x141
FCodes.CSR_NEXT_BOP CSR_NEXT_BOP
Value0x142
FCodes.CSR_FIRST_COL CSR_FIRST_COL
Value0x143
365
FCODES
CHAPTER 5 OBJECT REFERENCE
FCodes.CSR_NEXT_COL CSR_NEXT_COL
Value0x144
FCodes.CSR_NEXT_ELEMENT CSR_NEXT_ELEMENT
Value0x145
FCodes.CSR_PREV_ELEMENT CSR_PREV_ELEMENT
Value0x146
FCodes.CSR_BOE CSR_BOE
Value0x149
FCodes.CSR_EOE CSR_EOE
Value0x14A
FCodes.CSR_BEFORE_ELEMENT CSR_BEFORE_ELEMENT
Value0x14B
FCodes.CSR_INTO_CHILD CSR_INTO_CHILD
Value0x14D
FCodes.CSR_PREV_EOS CSR_PREV_EOS
Value0x937
FCodes.CSR_PREV_EOW CSR_PREV_EOW
Value0x938
FCodes.DEL_WORD_START DEL_WORD_START
Value0x160
FCodes.DEL_WORD_END DEL_WORD_END
Value0x161
FCodes.DEL_NEXT_SS DEL_NEXT_SS
Value0x162
FCodes.DEL_BOS DEL_BOS
Value0x163
FCodes.KBD_NUMLOCK KBD_NUMLOCK
Value0x170
FCodes.KBD_GBL_END KBD_GBL_END
Value0x1FF
FCodes.KBD_BACKTAB KBD_BACKTAB
Value0x220
FCodes.KBD_SHFTSPACE KBD_SHFTSPACE
Value0x221
366
FCODES
CHAPTER 5 OBJECT REFERENCE
FCodes.KBD_FIRSTTAB KBD_FIRSTTAB
Value0x222
FCodes.KBD_TABLE_TAB KBD_TABLE_TAB
Value0x223
FCodes.KBD_TAB KBD_TAB
Value0x219
FCodes.KBD_XCHARS KBD_XCHARS
Value0x224
FCodes.KBD_SOFTHYPHEN KBD_SOFTHYPHEN
Value0x225
FCodes.KBD_DONTHYPHEN KBD_DONTHYPHEN
Value0x226
FCodes.KBD_HARDHYPHEN KBD_HARDHYPHEN
Value0x227
FCodes.KBD_HARDSPACE KBD_HARDSPACE
Value0x228
FCodes.KBD_HARDRETURN KBD_HARDRETURN
Value0x229
FCodes.KBD_NUMSPACE KBD_NUMSPACE
Value0x22A
FCodes.KBD_THINSPACE KBD_THINSPACE
Value0x22B
FCodes.KBD_EMSPACE KBD_EMSPACE
Value0x22C
FCodes.KBD_ENSPACE KBD_ENSPACE
Value0x22D
FCodes.KBD_OPENLINE KBD_OPENLINE
Value0x22E
FCodes.KBD_RETURN KBD_RETURN
Value0x22F
FCodes.KBD_FPREV KBD_FPREV
Value0x230
FCodes.KBD_FNEXT KBD_FNEXT
Value0x231
367
FCODES
CHAPTER 5 OBJECT REFERENCE
FCodes.KBD_RONCE KBD_RONCE
Value0x232
FCodes.KBD_RGLOBAL KBD_RGLOBAL
Value0x233
FCodes.KBD_RANDF KBD_RANDF
Value0x234
FCodes.KBD_SETSEARCH KBD_SETSEARCH
Value0x235
FCodes.HIGH_CHAR HIGH_CHAR
Value0x240
FCodes.HIGH_WORD HIGH_WORD
Value0x241
FCodes.HIGH_LINE HIGH_LINE
Value0x242
FCodes.HIGH_SENT HIGH_SENT
Value0x243
FCodes.HIGH_PGF HIGH_PGF
Value0x244
FCodes.HIGH_SHL HIGH_SHL
Value0x245
FCodes.HIGH_SHR HIGH_SHR
Value0x246
FCodes.HIGH_CLEAR HIGH_CLEAR
Value0x247
FCodes.HIGH_FLOW HIGH_FLOW
Value0x248
FCodes.HIGH_ELEMENT HIGH_ELEMENT
Value0x249
FCodes.KBD_ABORT KBD_ABORT
Value0x250
FCodes.KBD_CAPTURE KBD_CAPTURE
Value0x251
FCodes.KBD_ECAPTURE KBD_ECAPTURE
Value0x256
368
FCODES
CHAPTER 5 OBJECT REFERENCE
FCodes.KBD_RECORD KBD_RECORD
Value0x252
FCodes.KBD_GETTRIGGER KBD_GETTRIGGER
Value0x253
FCodes.KBD_ABORT_DLGS KBD_ABORT_DLGS
Value0x254
FCodes.KBD_WAIT_DLGS KBD_WAIT_DLGS
Value0x255
FCodes.TXT_BOLD TXT_BOLD
Value0x260
FCodes.TXT_ITALIC TXT_ITALIC
Value0x261
FCodes.TXT_UNDERLINE TXT_UNDERLINE
Value0x262
FCodes.TXT_PLAIN TXT_PLAIN
Value0x263
FCodes.TXT_SUPER TXT_SUPER
Value0x264
FCodes.TXT_SUB TXT_SUB
Value0x265
FCodes.TXT_NORMAL TXT_NORMAL
Value0x266
FCodes.TXT_INCSIZE TXT_INCSIZE
Value0x267
FCodes.TXT_DECSIZE TXT_DECSIZE
Value0x268
FCodes.TXT_SELINCSIZE TXT_SELINCSIZE
Value0x11F
FCodes.TXT_SELDECSIZE TXT_SELDECSIZE
Value0x120
FCodes.TXT_SQUEEZE TXT_SQUEEZE
Value0x269
FCodes.TXT_SPREAD TXT_SPREAD
Value0x26A
369
FCODES
CHAPTER 5 OBJECT REFERENCE
FCodes.TXT_NOSTRETCH TXT_NOSTRETCH
Value0x130
FCodes.TXT_LESSSTRETCH TXT_LESSSTRETCH
Value0x131
FCodes.TXT_MORESTRETCH TXT_MORESTRETCH
Value0x132
FCodes.TXT_BAM TXT_BAM
Value0x26B
FCodes.TXT_STRIKEOUT TXT_STRIKEOUT
Value0x26C
FCodes.TXT_DEFAULT TXT_DEFAULT
Value0x26D
FCodes.TXT_OVERLINE TXT_OVERLINE
Value0x26E
FCodes.TXT_CHANGEBAR TXT_CHANGEBAR
Value0x26F
FCodes.TXT_KERN TXT_KERN
Value0x270
FCodes.TXT_OUTLINE TXT_OUTLINE
Value0x271
FCodes.TXT_SHADOW TXT_SHADOW
Value0x272
FCodes.TXT_MINICAPS TXT_MINICAPS
Value0x273
FCodes.TXT_INITCAPS TXT_INITCAPS
Value0x274
FCodes.TXT_UPPERCASE TXT_UPPERCASE
Value0x275
FCodes.TXT_LOWERCASE TXT_LOWERCASE
Value0x276
FCodes.TXT_NORMALCASE TXT_NORMALCASE
Value0x277
FCodes.TXT_DBLUNDERLINE TXT_DBLUNDERLINE
Value0x278
370
FCODES
CHAPTER 5 OBJECT REFERENCE
FCodes.TXT_NUMUNDERLINE TXT_NUMUNDERLINE
Value0x279
FCodes.TXT_TSUME TXT_TSUME
Value0x2A5
FCodes.TXT_SELBOLD TXT_SELBOLD
Value0x27A
FCodes.TXT_SELITALIC TXT_SELITALIC
Value0x27B
FCodes.TXT_SELUNDERLINE TXT_SELUNDERLINE
Value0x27C
FCodes.TXT_SELPLAIN TXT_SELPLAIN
Value0x27D
FCodes.TXT_7 TXT_7
Value0xC00
FCodes.TXT_9 TXT_9
Value0xC01
FCodes.TXT_10 TXT_10
Value0xC02
FCodes.TXT_12 TXT_12
Value0xC03
FCodes.TXT_14 TXT_14
Value0xC04
FCodes.TXT_18 TXT_18
Value0xC05
FCodes.TXT_24 TXT_24
Value0xC06
FCodes.TXT_USIZE TXT_USIZE
Value0xC07
FCodes.TXT_OTHERSIZE TXT_OTHERSIZE
Value0xC08
FCodes.TXT_FAMILY_AND_VARIATION TXT_FAMILY_AND_VARIATION
Value0xC09
FCodes.TXT_FAMILY_AND_VARIATION_P TXT_FAMILY_AND_VARIATION_PLATFORM
LATFORM Value0xC0A
371
FCODES
CHAPTER 5 OBJECT REFERENCE
FCodes.PGF_APPLY_TAG PGF_APPLY_TAG
Value0xC10
FCodes.CHAR_APPLY_TAG CHAR_APPLY_TAG
Value0xC11
FCodes.MENU_EXPOSE_WIN MENU_EXPOSE_WIN
Value0xC12
FCodes.MRU_SELECT_FILE MRU_SELECT_FILE
Value0xC13
FCodes.MENU_IMPORT_FILE MENU_IMPORT_FILE
Value0xC14
FCodes.KBD_EXPORT_GRAPHIC KBD_EXPORT_GRAPHIC
Value0xC15
FCodes.KBD_EXPORT_DOCUMENT KBD_EXPORT_DOCUMENT
Value0xC16
FCodes.TXT_FONT TXT_FONT
Value0xC17
FCodes.PGF_APPLY_CAT_TO_SEL PGF_APPLY_CAT_TO_SEL
Value0xF3D
FCodes.CHAR_APPLY_CAT_TO_SEL CHAR_APPLY_CAT_TO_SEL
Value0xF3E
FCodes.PGF_HYPHENON PGF_HYPHENON
Value0x27E
FCodes.PGF_HYPHENOFF PGF_HYPHENOFF
Value0x27F
FCodes.PGF_INCLINE PGF_INCLINE
Value0x280
FCodes.PGF_DECLINE PGF_DECLINE
Value0x281
FCodes.PGF_CENTER PGF_CENTER
Value0x282
FCodes.PGF_LEFT PGF_LEFT
Value0x283
FCodes.PGF_RIGHT PGF_RIGHT
Value0x284
372
FCODES
CHAPTER 5 OBJECT REFERENCE
FCodes.PGF_FULL PGF_FULL
Value0x285
FCodes.PGF_BAM PGF_BAM
Value0x286
FCodes.PGF_LINEFIX PGF_LINEFIX
Value0x287
FCodes.PGF_LINEFLOAT PGF_LINEFLOAT
Value0x288
FCodes.PGF_UNIFY PGF_UNIFY
Value0x289
FCodes.PGF_PAGETOP PGF_PAGETOP
Value0x28A
FCodes.PGF_COLTOP PGF_COLTOP
Value0x28B
FCodes.PGF_LEFTTOP PGF_LEFTTOP
Value0x28C
FCodes.PGF_RIGHTTOP PGF_RIGHTTOP
Value0x28D
FCodes.PGF_ANYPLACE PGF_ANYPLACE
Value0x28E
FCodes.KBD_ALIGN_TOP KBD_ALIGN_TOP
Value0x290
FCodes.KBD_ALIGN_MIDDLE KBD_ALIGN_MIDDLE
Value0x291
FCodes.KBD_ALIGN_BOTTOM KBD_ALIGN_BOTTOM
Value0x292
FCodes.KBD_OBALIGN_TOP KBD_OBALIGN_TOP
Value0x129
FCodes.KBD_OBALIGN_MIDDLE KBD_OBALIGN_MIDDLE
Value0x12A
FCodes.KBD_OBALIGN_BOTTOM KBD_OBALIGN_BOTTOM
Value0x12B
FCodes.KBD_OBALIGN_CENTER KBD_OBALIGN_CENTER
Value0x12C
373
FCODES
CHAPTER 5 OBJECT REFERENCE
FCodes.KBD_OBALIGN_LEFT KBD_OBALIGN_LEFT
Value0x12D
FCodes.KBD_OBALIGN_RIGHT KBD_OBALIGN_RIGHT
Value0x12E
FCodes.PGF_SINGLE_SPACE PGF_SINGLE_SPACE
Value0x293
FCodes.PGF_ONEANDAHALF_SPACE PGF_ONEANDAHALF_SPACE
Value0x294
FCodes.PGF_DOUBLE_SPACE PGF_DOUBLE_SPACE
Value0x295
FCodes.PGF_SPACE_BETWEEN PGF_SPACE_BETWEEN
Value0x296
FCodes.PGF_LINE_SPACE PGF_LINE_SPACE
Value0x297
FCodes.PGF_UPDATE_ALL PGF_UPDATE_ALL
Value0x298
FCodes.PGF_NEW_FORMAT PGF_NEW_FORMAT
Value0x299
FCodes.KBD_HELP_INDEX KBD_HELP_INDEX
Value0x2A0
FCodes.KBD_HELP_KEYS KBD_HELP_KEYS
Value0x2A1
FCodes.KBD_HELP_SAMPLES KBD_HELP_SAMPLES
Value0x2A2
FCodes.KBD_HELP_OVERVIEW KBD_HELP_OVERVIEW
Value0x2A3
FCodes.KBD_HELP_ONLINEMANUALS KBD_HELP_ONLINEMANUALS
Value0x2A4
FCodes.KBD_HELP_WEBWORKS KBD_HELP_WEBWORKS
Value0x2A6
FCodes.KBD_CUSTOMNEW KBD_CUSTOMNEW
Value0x2FF
FCodes.KBD_NEW KBD_NEW
Value0x300
374
FCODES
CHAPTER 5 OBJECT REFERENCE
FCodes.KBD_NEWBOOK KBD_NEWBOOK
Value0x308
FCodes.KBD_OPEN KBD_OPEN
Value0x301
FCodes.KBD_HEROIC_OPEN KBD_HEROIC_OPEN
Value0x306
FCodes.KBD_SILENT_OPEN KBD_SILENT_OPEN
Value0x307
FCodes.KBD_HELP KBD_HELP
Value0x302
FCodes.KBD_INFO KBD_INFO
Value0x303
FCodes.KBD_CSHELPMODE KBD_CSHELPMODE
Value0x304
FCodes.KBD_ABOUTPRODUCT KBD_ABOUTPRODUCT
Value0x305
FCodes.KBD_BOOKADDFILE KBD_BOOKADDFILE
Value0x30A
FCodes.KBD_BOOKEDITDEFINE KBD_BOOKEDITDEFINE
Value0x30B
FCodes.KBD_BOOKRENAMEFILE KBD_BOOKRENAMEFILE
Value0x30C
FCodes.KBD_BOOKDISPLAYFILENAME KBD_BOOKDISPLAYFILENAME
Value0x30D
FCodes.KBD_BOOKDISPLAYTEXT KBD_BOOKDISPLAYTEXT
Value0x30E
FCodes.KBD_BOOKCOMP_EXCLUDE KBD_BOOKCOMP_EXCLUDE
Value0x4E0
FCodes.KBD_BOOKADDFOLDER KBD_BOOKADDFOLDER
Value0x601
FCodes.KBD_BOOKCOMP_FILENAME KBD_BOOKCOMP_FILENAME
Value0x607
FCodes.KBD_BOOKCOMP_TEXT KBD_BOOKCOMP_TEXT
Value0x608
375
FCODES
CHAPTER 5 OBJECT REFERENCE
FCodes.KBD_BOOKADDGROUP KBD_BOOKADDGROUP
Value0x609
FCodes.KBD_MOVE_UP KBD_MOVE_UP
Value0x70A
FCodes.KBD_MOVE_DOWN KBD_MOVE_DOWN
Value0x70B
FCodes.KBD_MOVE_LEFT KBD_MOVE_LEFT
Value0x70C
FCodes.KBD_MOVE_RIGHT KBD_MOVE_RIGHT
Value0x70D
FCodes.KBD_OPEN_COMPONENTS KBD_OPEN_COMPONENTS
Value0x3EA
FCodes.KBD_CLOSE_COMPONENTS KBD_CLOSE_COMPONENTS
Value0x3EB
FCodes.KBD_PRINT_COMPONENTS KBD_PRINT_COMPONENTS
Value0x3EC
FCodes.KBD_SAVE_COMPONENTS KBD_SAVE_COMPONENTS
Value0x3ED
FCodes.KBD_COMPONENT_PROPERTIES KBD_COMPONENT_PROPERTIES
Value0x3EE
FCodes.KBD_DELETE_FILE KBD_DELETE_FILE
Value0x30F
FCodes.KBD_COLLAPSE_ALL KBD_COLLAPSE_ALL
Value0x3FA
FCodes.KBD_EXPAND_ALL KBD_EXPAND_ALL
Value0x3FB
FCodes.SWITCH_TO_RESOURCEMANAGE SWITCH_TO_RESOURCEMANAGER
R Value0x9EA
FCodes.SWITCH_TO_DOCUMENTVIEW SWITCH_TO_DOCUMENTVIEW
Value0x9EB
FCodes.KBD_SAVE KBD_SAVE
Value0x310
FCodes.KBD_SAVEAS KBD_SAVEAS
Value0x311
376
FCODES
CHAPTER 5 OBJECT REFERENCE
FCodes.KBD_SAVEASPDFREVIEW KBD_SAVEASPDFREVIEW
Value0x95A
FCodes.KBD_SAVEASPDFREVIEW2 KBD_SAVEASPDFREVIEW2
Value0x95B
FCodes.KBD_SAVEASPDFUBIQ KBD_SAVEASPDFUBIQ
Value0x95E
FCodes.KBD_SAVEASPDFSHARE KBD_SAVEASPDFSHARE
Value0x95F
FCodes.KBD_SAVEASPDF KBD_SAVEASPDF
Value0x950
FCodes.KBD_SAVEASXML KBD_SAVEASXML
Value0x951
FCodes.KBD_MANCOND KBD_MANCOND
Value0x952
FCodes.KBD_CONDINDICATOR KBD_CONDINDICATOR
Value0x953
FCodes.KBD_ATTRCOND KBD_ATTRCOND
Value0x954
FCodes.KBD_PREVIEWFBA KBD_PREVIEWFBA
Value0xB16
FCodes.AMT_REGISRATION AMT_REGISRATION
Value0x965
FCodes.AMT_DEACTIVATION AMT_DEACTIVATION
Value0x967
FCodes.AMT_UPDATES AMT_UPDATES
Value0x968
FCodes.KBD_REVERT KBD_REVERT
Value0x312
FCodes.KBD_DOCINFO KBD_DOCINFO
Value0x3DA
FCodes.KBD_SETPOSTER KBD_SETPOSTER
Value0x3DB
FCodes.KBD_REMOVEPOSTER KBD_REMOVEPOSTER
Value0x3DE
377
FCODES
CHAPTER 5 OBJECT REFERENCE
FCodes.KBD_PRINT KBD_PRINT
Value0x313
FCodes.KBD_IMPORT KBD_IMPORT
Value0x314
FCodes.KBD_GENERATE KBD_GENERATE
Value0x3E1
FCodes.KBD_USEFMTFROM KBD_USEFMTFROM
Value0x316
FCodes.KBD_KBMACRO KBD_KBMACRO
Value0x317
FCodes.KBD_SESSION KBD_SESSION
Value0x318
FCodes.KBD_PAGESETUP KBD_PAGESETUP
Value0x319
FCodes.KBD_OPENALL KBD_OPENALL
Value0x31A
FCodes.KBD_QUITALL KBD_QUITALL
Value0x31B
FCodes.KBD_SAVEALL KBD_SAVEALL
Value0x31C
FCodes.KBD_REPEATNEW KBD_REPEATNEW
Value0x31D
FCodes.KBD_PODLOCATION KBD_PODLOCATION
Value0x31E
FCodes.KBD_COMPARE KBD_COMPARE
Value0x31F
FCodes.KBD_UNDO KBD_UNDO
Value0x320
FCodes.KBD_REDO KBD_REDO
Value0x935
FCodes.KBD_HIST KBD_HIST
Value0x936
FCodes.KBD_REPEAT KBD_REPEAT
Value0x939
378
FCODES
CHAPTER 5 OBJECT REFERENCE
FCodes.KBD_CUT KBD_CUT
Value0x321
FCodes.KBD_COPY KBD_COPY
Value0x322
FCodes.KBD_PASTE KBD_PASTE
Value0x323
FCodes.KBD_CLEAR KBD_CLEAR
Value0x324
FCodes.KBD_COPYFONT KBD_COPYFONT
Value0x325
FCodes.KBD_COPYPGF KBD_COPYPGF
Value0x326
FCodes.KBD_SELECTALL KBD_SELECTALL
Value0x327
FCodes.KBD_STUFF KBD_STUFF
Value0x328
FCodes.KBD_SEARCH KBD_SEARCH
Value0x329
FCodes.KBD_SPELLING KBD_SPELLING
Value0x32A
FCodes.KBD_CAPITAL KBD_CAPITAL
Value0x32B
FCodes.KBD_YANK KBD_YANK
Value0x32C
FCodes.KBD_SELECT_GENERATED_FILES KBD_SELECT_GENERATED_FILES
Value0x32D
FCodes.KBD_SELECT_NON_GENERATED_ KBD_SELECT_NON_GENERATED_FILES
FILES Value0x32E
FCodes.KBD_SELECT_FM_FILES KBD_SELECT_FM_FILES
Value0x315
FCodes.KBD_SELECT_PRINTABLE_FILES KBD_SELECT_PRINTABLE_FILES
Value0x9E2
FCodes.KBD_SELECT_EXCLUDED_FILE KBD_SELECT_EXCLUDED_FILE
Value0x9D1
379
FCODES
CHAPTER 5 OBJECT REFERENCE
FCodes.KBD_SELECT_NONEXCLUDED_FIL KBD_SELECT_NONEXCLUDED_FILE
E Value0x9D2
FCodes.KBD_SELECT_CHAPTER_COMPO KBD_SELECT_CHAPTER_COMPONENTS
NENTS Value0x9D3
FCodes.KBD_SELECT_SECTION_COMPON KBD_SELECT_SECTION_COMPONENTS
ENTS Value0x9D4
FCodes.KBD_SELECT_SUBSECTION_COM KBD_SELECT_SUBSECTION_COMPONENTS
PONENTS Value0x9D5
FCodes.KBD_ALLCAP KBD_ALLCAP
Value0x33A
FCodes.KBD_ALLLOWER KBD_ALLLOWER
Value0x33B
FCodes.KBD_INITCAP KBD_INITCAP
Value0x33C
FCodes.KBD_ALLCAPH KBD_ALLCAPH
Value0x369
FCodes.KBD_ALLLOWERH KBD_ALLLOWERH
Value0x36A
FCodes.KBD_INITCAPH KBD_INITCAPH
Value0x36B
FCodes.KBD_THESAURUS KBD_THESAURUS
Value0x3D0
FCodes.KBD_THESAURUS_REPLACE KBD_THESAURUS_REPLACE
Value0x3D3
FCodes.KBD_CREATE_PUBLISHER KBD_CREATE_PUBLISHER
Value0x3D5
FCodes.KBD_SUBSCRIBE_TO KBD_SUBSCRIBE_TO
Value0x3D6
FCodes.KBD_LINK_BOUNDARIES KBD_LINK_BOUNDARIES
Value0x3D7
FCodes.KBD_FONTDESIGN KBD_FONTDESIGN
Value0x330
FCodes.KBD_PGFDESIGN KBD_PGFDESIGN
Value0x331
380
FCODES
CHAPTER 5 OBJECT REFERENCE
FCodes.KBD_RUBIPROPS KBD_RUBIPROPS
Value0x3DD
FCodes.KBD_COLLAYOUT KBD_COLLAYOUT
Value0x348
FCodes.KBD_LINELAYOUT KBD_LINELAYOUT
Value0x332
FCodes.KBD_PAGESIZE KBD_PAGESIZE
Value0x349
FCodes.KBD_PAGINATION KBD_PAGINATION
Value0xA40
FCodes.KBD_PAGEBACK KBD_PAGEBACK
Value0x34A
FCodes.KBD_NEWMASTER KBD_NEWMASTER
Value0xA0A
FCodes.KBD_REORDERMASTER KBD_REORDERMASTER
Value0xA0B
FCodes.KBD_PAGEUPDATE KBD_PAGEUPDATE
Value0xA00
FCodes.KBD_CUST_TEXT_FRAME KBD_CUST_TEXT_FRAME
Value0xA01
FCodes.KBD_CONNECT_TEXT_FRAME KBD_CONNECT_TEXT_FRAME
Value0x35B
FCodes.KBD_CUTHEAD KBD_CUTHEAD
Value0x35C
FCodes.KBD_CURTAIL KBD_CURTAIL
Value0x35D
FCodes.KBD_CUTBOTH KBD_CUTBOTH
Value0xA04
FCodes.KBD_SPLIT KBD_SPLIT
Value0x35A
FCodes.KBD_SPLITR KBD_SPLITR
Value0xA02
FCodes.KBD_SPLITL KBD_SPLITL
Value0xA03
381
FCODES
CHAPTER 5 OBJECT REFERENCE
FCodes.KBD_ROTPAGE_PLUS KBD_ROTPAGE_PLUS
Value0x34E
FCodes.KBD_ROTPAGE_MINUS KBD_ROTPAGE_MINUS
Value0x34F
FCodes.KBD_ROTPAGE_NORM KBD_ROTPAGE_NORM
Value0xA05
FCodes.KBD_NUMBERING KBD_NUMBERING
Value0x333
FCodes.KBD_CBARPRO KBD_CBARPRO
Value0x334
FCodes.KBD_FOOTNOTEPRO KBD_FOOTNOTEPRO
Value0x335
FCodes.KBD_TEXT_OPTIONS KBD_TEXT_OPTIONS
Value0x337
FCodes.KBD_COMBINED_FONTS KBD_COMBINED_FONTS
Value0x338
FCodes.KBD_ACROBAT_SETUP KBD_ACROBAT_SETUP
Value0x36C
FCodes.KBD_LINENUMPRO KBD_LINENUMPRO
Value0x673
FCodes.KBD_LINENUMTOGGLE KBD_LINENUMTOGGLE
Value0x674
FCodes.KBD_FIRSTPAGE KBD_FIRSTPAGE
Value0x340
FCodes.KBD_LASTPAGE KBD_LASTPAGE
Value0x341
FCodes.KBD_BODYPAGE KBD_BODYPAGE
Value0x342
FCodes.KBD_MASTERPAGE KBD_MASTERPAGE
Value0x343
FCodes.KBD_REFPAGE KBD_REFPAGE
Value0x344
FCodes.KBD_GOTOPAGE KBD_GOTOPAGE
Value0x345
382
FCODES
CHAPTER 5 OBJECT REFERENCE
FCodes.KBD_ADDPAGE KBD_ADDPAGE
Value0x346
FCodes.KBD_DELETEPAGE KBD_DELETEPAGE
Value0x347
FCodes.KBD_FREEZE KBD_FREEZE
Value0x34B
FCodes.KBD_TEXTCOLPRO KBD_TEXTCOLPRO
Value0x339
FCodes.KBD_PREVPAGE KBD_PREVPAGE
Value0x34C
FCodes.KBD_NEXTPAGE KBD_NEXTPAGE
Value0x34D
FCodes.KBD_GOTOPAGEN KBD_GOTOPAGEN
Value0x96E
FCodes.KBD_GOTOIP KBD_GOTOIP
Value0x96F
FCodes.KBD_STRWIN_LEFTANCHOR KBD_STRWIN_LEFTANCHOR
Value0x3DF
FCodes.KBD_PAGEBREAK KBD_PAGEBREAK
Value0x32F
FCodes.KBD_ANCHOR KBD_ANCHOR
Value0x350
FCodes.KBD_FOOTNOTE KBD_FOOTNOTE
Value0x351
FCodes.KBD_REFERENCE KBD_REFERENCE
Value0x352
FCodes.KBD_VARIABLE KBD_VARIABLE
Value0x353
FCodes.KBD_INSET KBD_INSET
Value0x354
FCodes.KBD_HYPERTEXT KBD_HYPERTEXT
Value0x359
FCodes.KBD_MARKERS KBD_MARKERS
Value0x355
383
FCODES
CHAPTER 5 OBJECT REFERENCE
FCodes.KBD_EQUATION KBD_EQUATION
Value0x336
FCodes.KBD_CONDTEXT KBD_CONDTEXT
Value0x357
FCodes.KBD_NEWMARKER KBD_NEWMARKER
Value0x356
FCodes.KBD_EDITMARKERTYPE KBD_EDITMARKERTYPE
Value0x409
FCodes.KBD_DELMARKERTYPE KBD_DELMARKERTYPE
Value0x358
FCodes.KBD_RENAMEMARKERTYPE KBD_RENAMEMARKERTYPE
Value0x35F
FCodes.KBD_ADDMARKERTYPE KBD_ADDMARKERTYPE
Value0x41D
FCodes.KBD_DELETEMARKER KBD_DELETEMARKER
Value0x969
FCodes.KBD_MARKERSPOD KBD_MARKERSPOD
Value0x96A
FCodes.KBD_XREFSPOD KBD_XREFSPOD
Value0x96B
FCodes.KBD_FONTPOD KBD_FONTPOD
Value0x966
FCodes.KBD_FONTREPLACEPOD KBD_FONTREPLACEPOD
Value0x95C
FCodes.KBD_HOTSPOTSPOD KBD_HOTSPOTSPOD
Value0x4FF
FCodes.KBD_NEWAFRAME KBD_NEWAFRAME
Value0x96D
FCodes.KBD_NEWHYPERTEXT KBD_NEWHYPERTEXT
Value0x35E
FCodes.KBD_VALIDATE_HYPERTEXT KBD_VALIDATE_HYPERTEXT
Value0xF13
FCodes.MENU_HYPERTEXT MENU_HYPERTEXT
Value0xC18
384
FCODES
CHAPTER 5 OBJECT REFERENCE
FCodes.KBD_HYPRTXT_SHTCUT KBD_HYPRTXT_SHTCUT
Value0x41E
FCodes.WEB_GOTOADOBE WEB_GOTOADOBE
Value0xC19
FCodes.KBD_FMPIP KBD_FMPIP
Value0x806
FCodes.WEB_PREFERENCES WEB_PREFERENCES
Value0xC1A
FCodes.WEB_TOPISSUES WEB_TOPISSUES
Value0xC1B
FCodes.WEB_ADOBEHELP WEB_ADOBEHELP
Value0xC22
FCodes.WEB_CORPORATENEWS WEB_CORPORATENEWS
Value0xC1D
FCodes.WEB_REGISTRATION WEB_REGISTRATION
Value0xC1E
FCodes.WEB_FRAME_BOOKMARKS WEB_FRAME_BOOKMARKS
Value0xC1F
FCodes.WEB_ADOBE_BOOKMARKS WEB_ADOBE_BOOKMARKS
Value0xC21
FCodes.KBD_DUMPHYPERTEXT KBD_DUMPHYPERTEXT
Value0xC20
FCodes.KBD_VARCURPG KBD_VARCURPG
Value0xA06
FCodes.KBD_VARPGCOUNT KBD_VARPGCOUNT
Value0xA07
FCodes.KBD_VARCURDATE KBD_VARCURDATE
Value0xA08
FCodes.KBD_VAROTHER KBD_VAROTHER
Value0xA09
FCodes.KBD_EDITVARIABLE KBD_EDITVARIABLE
Value0xA0C
FCodes.KBD_FINDNEXT KBD_FINDNEXT
Value0x955
385
FCODES
CHAPTER 5 OBJECT REFERENCE
FCodes.KBD_FINDPREV KBD_FINDPREV
Value0x956
FCodes.KBD_TRACKCHANGE KBD_TRACKCHANGE
Value0x957
FCodes.KBD_TRACKCHANGEDISABLE KBD_TRACKCHANGEDISABLE
Value0x95D
FCodes.KBD_ACCEPTCHANGE KBD_ACCEPTCHANGE
Value0x958
FCodes.KBD_REJECTCHANGE KBD_REJECTCHANGE
Value0x959
FCodes.KBD_ACCEPTCHANGEANDNEXT KBD_ACCEPTCHANGEANDNEXT
Value0x99B
FCodes.KBD_REJECTCHANGEANDNEXT KBD_REJECTCHANGEANDNEXT
Value0x99C
FCodes.KBD_ACCEPTALLCHANGE KBD_ACCEPTALLCHANGE
Value0x960
FCodes.KBD_REJECTALLCHANGE KBD_REJECTALLCHANGE
Value0x961
FCodes.KBD_PREVIEW_ACCEPTALL KBD_PREVIEW_ACCEPTALL
Value0x962
FCodes.KBD_PREVIEW_REJECTALL KBD_PREVIEW_REJECTALL
Value0x963
FCodes.KBD_PREVIEW_OFF KBD_PREVIEW_OFF
Value0x964
FCodes.KBD_CONFIGURE_TC_COLOR KBD_CONFIGURE_TC_COLOR
Value0x990
FCodes.KBD_TC_USER_NAME KBD_TC_USER_NAME
Value0x991
FCodes.KBD_TC_SEARCH_DOC KBD_TC_SEARCH_DOC
Value0x133
FCodes.KBD_TC_SEARCH_BOOK KBD_TC_SEARCH_BOOK
Value0x134
FCodes.KBD_TC_SEARCH_DITAMAP KBD_TC_SEARCH_DITAMAP
Value0x135
386
FCODES
CHAPTER 5 OBJECT REFERENCE
FCodes.KBD_TC_SEARCH_SEL KBD_TC_SEARCH_SEL
Value0x136
FCodes.KBD_TOC KBD_TOC
Value0x2B0
FCodes.KBD_LIST_FIGURE KBD_LIST_FIGURE
Value0x2B1
FCodes.KBD_LIST_TABLE KBD_LIST_TABLE
Value0x2B2
FCodes.KBD_LIST_PGF KBD_LIST_PGF
Value0x2B3
FCodes.KBD_LIST_PGF_ALPHA KBD_LIST_PGF_ALPHA
Value0x2B4
FCodes.KBD_LIST_MARKER KBD_LIST_MARKER
Value0x2B5
FCodes.KBD_LIST_MARKER_ALPHA KBD_LIST_MARKER_ALPHA
Value0x2B6
FCodes.KBD_LIST_REFERENCES KBD_LIST_REFERENCES
Value0x2B7
FCodes.KBD_INDEX_STANDARD KBD_INDEX_STANDARD
Value0x2C0
FCodes.KBD_INDEX_AUTHOR KBD_INDEX_AUTHOR
Value0x2C1
FCodes.KBD_INDEX_SUBJECT KBD_INDEX_SUBJECT
Value0x2C2
FCodes.KBD_INDEX_MARKER KBD_INDEX_MARKER
Value0x2C3
FCodes.KBD_INDEX_REFERENCES KBD_INDEX_REFERENCES
Value0x2C4
FCodes.KBD_OPTIONS KBD_OPTIONS
Value0x360
FCodes.KBD_BORDERS KBD_BORDERS
Value0x361
FCodes.KBD_SYMBOLS KBD_SYMBOLS
Value0x362
387
FCODES
CHAPTER 5 OBJECT REFERENCE
FCodes.KBD_RULERS KBD_RULERS
Value0x363
FCodes.KBD_GRID KBD_GRID
Value0x364
FCodes.KBD_SEPARATIONS KBD_SEPARATIONS
Value0x365
FCodes.KBD_COLOR KBD_COLOR
Value0x39F
FCodes.KBD_CONDVISIBILITY KBD_CONDVISIBILITY
Value0x367
FCodes.KBD_CONDTOGGLEOVERR KBD_CONDTOGGLEOVERR
Value0x368
FCodes.KBD_HOTSPOTINDICATORS KBD_HOTSPOTINDICATORS
Value0x508
FCodes.KBD_TOGGLEDRAW KBD_TOGGLEDRAW
Value0x366
FCodes.KBD_VIEWSEP1 KBD_VIEWSEP1
Value0x36D
FCodes.KBD_VIEWSEP2 KBD_VIEWSEP2
Value0x36E
FCodes.KBD_VIEWSEP3 KBD_VIEWSEP3
Value0x36F
FCodes.KBD_VIEWSEP4 KBD_VIEWSEP4
Value0x37D
FCodes.KBD_VIEWSEP5 KBD_VIEWSEP5
Value0x37E
FCodes.KBD_VIEWSEP6 KBD_VIEWSEP6
Value0x39E
FCodes.KBD_MENUCOMPLETE KBD_MENUCOMPLETE
Value0x33D
FCodes.KBD_MENUQUICK KBD_MENUQUICK
Value0x33E
FCodes.KBD_MENUCUSTOM KBD_MENUCUSTOM
Value0x33F
388
FCODES
CHAPTER 5 OBJECT REFERENCE
FCodes.KBD_MENUMODIFY KBD_MENUMODIFY
Value0x3D9
FCodes.KBD_MENURESET KBD_MENURESET
Value0x3D8
FCodes.KBD_SHOW_BORDERS KBD_SHOW_BORDERS
Value0x3F1
FCodes.KBD_SHOW_HOTSPOTINDICATO KBD_SHOW_HOTSPOTINDICATORS
RS Value0x509
FCodes.KBD_SHOW_SYMBOLS KBD_SHOW_SYMBOLS
Value0x3F2
FCodes.KBD_SHOW_RULERS KBD_SHOW_RULERS
Value0x3F3
FCodes.KBD_SHOW_GRID KBD_SHOW_GRID
Value0x3F4
FCodes.KBD_SHOW_LINK_BOUNDARIES KBD_SHOW_LINK_BOUNDARIES
Value0x3F5
FCodes.KBD_SHOW_ELEM_BORDER KBD_SHOW_ELEM_BORDER
Value0x3F6
FCodes.KBD_SHOW_ELEM_TAGS KBD_SHOW_ELEM_TAGS
Value0x3F7
FCodes.KBD_SHOW_GRAPHICS KBD_SHOW_GRAPHICS
Value0x3F8
FCodes.KBD_SHOW_COND_IND KBD_SHOW_COND_IND
Value0x3F9
FCodes.KBD_HIDE_BORDERS KBD_HIDE_BORDERS
Value0x4F1
FCodes.KBD_HIDE_HOTSPOTINDICATORS KBD_HIDE_HOTSPOTINDICATORS
Value0x50A
FCodes.KBD_HIDE_SYMBOLS KBD_HIDE_SYMBOLS
Value0x4F2
FCodes.KBD_HIDE_RULERS KBD_HIDE_RULERS
Value0x4F3
FCodes.KBD_HIDE_GRID KBD_HIDE_GRID
Value0x4F4
389
FCODES
CHAPTER 5 OBJECT REFERENCE
FCodes.KBD_HIDE_LINK_BOUNDARIES KBD_HIDE_LINK_BOUNDARIES
Value0x4F5
FCodes.KBD_HIDE_ELEM_BORDER KBD_HIDE_ELEM_BORDER
Value0x4F6
FCodes.KBD_HIDE_GRAPHICS KBD_HIDE_GRAPHICS
Value0x4F8
FCodes.KBD_HIDE_COND_IND KBD_HIDE_COND_IND
Value0x4F9
FCodes.KBD_INSETPOD KBD_INSETPOD
Value0x994
FCodes.KBD_SEARCHREFS KBD_SEARCHREFS
Value0xB17
FCodes.KBD_FLIPUD KBD_FLIPUD
Value0x370
FCodes.KBD_FLIPLR KBD_FLIPLR
Value0x371
FCodes.KBD_ROTATE_CCW KBD_ROTATE_CCW
Value0x372
FCodes.KBD_ROT_PLUS KBD_ROT_PLUS
Value0x372
FCodes.KBD_ROTATE_CCW_SMALL KBD_ROTATE_CCW_SMALL
Value0x38A
FCodes.KBD_SCALE KBD_SCALE
Value0x373
FCodes.KBD_SMOOTH KBD_SMOOTH
Value0x374
FCodes.KBD_UNSMOOTH KBD_UNSMOOTH
Value0x375
FCodes.KBD_RESHAPE KBD_RESHAPE
Value0x376
FCodes.KBD_JOINCURVES KBD_JOINCURVES
Value0x377
FCodes.KBD_SETSIDES KBD_SETSIDES
Value0x378
390
FCODES
CHAPTER 5 OBJECT REFERENCE
FCodes.KBD_CONSTRAIN KBD_CONSTRAIN
Value0x379
FCodes.KBD_SNAP KBD_SNAP
Value0x37A
FCodes.KBD_GRAVITY KBD_GRAVITY
Value0x37B
FCodes.KBD_KEEPTOOL KBD_KEEPTOOL
Value0x37C
FCodes.KBD_OVERPRINT KBD_OVERPRINT
Value0x3D2
FCodes.KBD_OVERPRINT_NONE KBD_OVERPRINT_NONE
Value0x3D4
FCodes.KBD_RUN_OFF KBD_RUN_OFF
Value0x670
FCodes.KBD_RUN_CONTOUR KBD_RUN_CONTOUR
Value0x668
FCodes.KBD_RUN_BBOX KBD_RUN_BBOX
Value0x669
FCodes.KBD_RUN_GAP KBD_RUN_GAP
Value0x671
FCodes.KBD_RUN_PROPS KBD_RUN_PROPS
Value0x667
FCodes.KBD_SETRUN_PROPS KBD_SETRUN_PROPS
Value0x96C
FCodes.KBD_FRONT KBD_FRONT
Value0x380
FCodes.KBD_BACK KBD_BACK
Value0x381
FCodes.KBD_GROUP KBD_GROUP
Value0x382
FCodes.KBD_UNGROUP KBD_UNGROUP
Value0x383
FCodes.KBD_ALIGN KBD_ALIGN
Value0x384
391
FCODES
CHAPTER 5 OBJECT REFERENCE
FCodes.KBD_DISTRIBUTE KBD_DISTRIBUTE
Value0x385
FCodes.KBD_ROTATE_CW KBD_ROTATE_CW
Value0x386
FCodes.KBD_ROT_MINUS KBD_ROT_MINUS
Value0x386
FCodes.KBD_ROTATE_CW_SMALL KBD_ROTATE_CW_SMALL
Value0x389
FCodes.KBD_OBJPROPS KBD_OBJPROPS
Value0x387
FCodes.KBD_PICKOBJPROPS KBD_PICKOBJPROPS
Value0x388
FCodes.KBD_MUTATE KBD_MUTATE
Value0x37F
FCodes.KBD_ROTATE KBD_ROTATE
Value0x38B
FCodes.KBD_ROTATE_AGAIN KBD_ROTATE_AGAIN
Value0x38C
FCodes.KBD_ROTATE_NATURAL KBD_ROTATE_NATURAL
Value0x38D
FCodes.KBD_REROTATE KBD_REROTATE
Value0x38E
FCodes.KBD_ROTATE_RESET0 KBD_ROTATE_RESET0
Value0x38F
FCodes.KBD_SETALIGN_PROPS KBD_SETALIGN_PROPS
Value0x992
FCodes.KBD_SETDISTRIBUTE_PROPS KBD_SETDISTRIBUTE_PROPS
Value0x993
FCodes.KBD_CLOSEWIN KBD_CLOSEWIN
Value0x390
FCodes.KBD_OPENWIN KBD_OPENWIN
Value0x391
FCodes.KBD_CLOPWIN KBD_CLOPWIN
Value0x392
392
FCODES
CHAPTER 5 OBJECT REFERENCE
FCodes.KBD_MOVEWIN KBD_MOVEWIN
Value0x393
FCodes.KBD_EXPOSEWIN KBD_EXPOSEWIN
Value0x395
FCodes.KBD_HIDEWIN KBD_HIDEWIN
Value0x396
FCodes.KBD_HISHWIN KBD_HISHWIN
Value0x397
FCodes.KBD_REFRESHWIN KBD_REFRESHWIN
Value0x398
FCodes.KBD_QUITWIN KBD_QUITWIN
Value0x399
FCodes.KBD_RESIZELOCK KBD_RESIZELOCK
Value0x39A
FCodes.KBD_RESIZEUNLOCK KBD_RESIZEUNLOCK
Value0x39B
FCodes.KBD_QUIETCLOSEWIN KBD_QUIETCLOSEWIN
Value0x39C
FCodes.KBD_POPUP_MENU KBD_POPUP_MENU
Value0x39D
FCodes.KBD_LINETOOL KBD_LINETOOL
Value0x3A0
FCodes.KBD_RECTTOOL KBD_RECTTOOL
Value0x3A1
FCodes.KBD_POLYGTOOL KBD_POLYGTOOL
Value0x3A2
FCodes.KBD_POLYLTOOL KBD_POLYLTOOL
Value0x3A3
FCodes.KBD_ARCTOOL KBD_ARCTOOL
Value0x3A4
FCodes.KBD_ROUNDRECT KBD_ROUNDRECT
Value0x3A5
FCodes.KBD_OVALTOOL KBD_OVALTOOL
Value0x3A6
393
FCODES
CHAPTER 5 OBJECT REFERENCE
FCodes.KBD_TEXTLTOOL KBD_TEXTLTOOL
Value0x3A7
FCodes.KBD_TEXTRTOOL KBD_TEXTRTOOL
Value0x3A8
FCodes.KBD_FREETOOL KBD_FREETOOL
Value0x3A9
FCodes.KBD_FRAMETOOL KBD_FRAMETOOL
Value0x3AA
FCodes.KBD_LASTTOOL KBD_LASTTOOL
Value0x3AB
FCodes.KBD_WIDTH0 KBD_WIDTH0
Value0x3AC
FCodes.KBD_WIDTH1 KBD_WIDTH1
Value0x3AD
FCodes.KBD_INCWIDTH KBD_INCWIDTH
Value0x3AE
FCodes.KBD_DECWIDTH KBD_DECWIDTH
Value0x3AF
FCodes.KBD_PEN0 KBD_PEN0
Value0x3B0
FCodes.KBD_PEN1 KBD_PEN1
Value0x3B1
FCodes.KBD_INCPEN KBD_INCPEN
Value0x3B2
FCodes.KBD_DECPEN KBD_DECPEN
Value0x3B3
FCodes.KBD_FILL0 KBD_FILL0
Value0x3B4
FCodes.KBD_FILL1 KBD_FILL1
Value0x3B5
FCodes.KBD_INCFILL KBD_INCFILL
Value0x3B6
FCodes.KBD_DECFILL KBD_DECFILL
Value0x3B7
394
FCODES
CHAPTER 5 OBJECT REFERENCE
FCodes.KBD_SETFILL KBD_SETFILL
Value0x3B8
FCodes.KBD_SETPEN KBD_SETPEN
Value0x3B9
FCodes.KBD_SETWIDTH KBD_SETWIDTH
Value0x3BA
FCodes.KBD_SETCAP KBD_SETCAP
Value0x3BB
FCodes.KBD_SETSEP KBD_SETSEP
Value0x3BC
FCodes.KBD_SETSEP_KEEP KBD_SETSEP_KEEP
Value0x3BE
FCodes.KBD_SETSEP_ALL KBD_SETSEP_ALL
Value0x3BF
FCodes.KBD_SETSEP_RESET_TINT_OVER KBD_SETSEP_RESET_TINT_OVERPRINT
PRINT Value0x3D1
FCodes.KBD_SETFILL_0 KBD_SETFILL_0
Value0x430
FCodes.KBD_SETFILL_1 KBD_SETFILL_1
Value0x431
FCodes.KBD_SETFILL_2 KBD_SETFILL_2
Value0x432
FCodes.KBD_SETFILL_3 KBD_SETFILL_3
Value0x433
FCodes.KBD_SETFILL_4 KBD_SETFILL_4
Value0x434
FCodes.KBD_SETFILL_5 KBD_SETFILL_5
Value0x435
FCodes.KBD_SETFILL_6 KBD_SETFILL_6
Value0x436
FCodes.KBD_SETFILL_7 KBD_SETFILL_7
Value0x437
FCodes.KBD_SETFILL_8 KBD_SETFILL_8
Value0x438
395
FCODES
CHAPTER 5 OBJECT REFERENCE
FCodes.KBD_SETFILL_9 KBD_SETFILL_9
Value0x439
FCodes.KBD_SETFILL_A KBD_SETFILL_A
Value0x43A
FCodes.KBD_SETFILL_B KBD_SETFILL_B
Value0x43B
FCodes.KBD_SETFILL_C KBD_SETFILL_C
Value0x43C
FCodes.KBD_SETFILL_D KBD_SETFILL_D
Value0x43D
FCodes.KBD_SETFILL_E KBD_SETFILL_E
Value0x43E
FCodes.KBD_SETFILL_F KBD_SETFILL_F
Value0x43F
FCodes.KBD_SETPEN_0 KBD_SETPEN_0
Value0x440
FCodes.KBD_SETPEN_1 KBD_SETPEN_1
Value0x441
FCodes.KBD_SETPEN_2 KBD_SETPEN_2
Value0x442
FCodes.KBD_SETPEN_3 KBD_SETPEN_3
Value0x443
FCodes.KBD_SETPEN_4 KBD_SETPEN_4
Value0x444
FCodes.KBD_SETPEN_5 KBD_SETPEN_5
Value0x445
FCodes.KBD_SETPEN_6 KBD_SETPEN_6
Value0x446
FCodes.KBD_SETPEN_7 KBD_SETPEN_7
Value0x447
FCodes.KBD_SETPEN_8 KBD_SETPEN_8
Value0x448
FCodes.KBD_SETPEN_9 KBD_SETPEN_9
Value0x449
396
FCODES
CHAPTER 5 OBJECT REFERENCE
FCodes.KBD_SETPEN_A KBD_SETPEN_A
Value0x44A
FCodes.KBD_SETPEN_B KBD_SETPEN_B
Value0x44B
FCodes.KBD_SETPEN_C KBD_SETPEN_C
Value0x44C
FCodes.KBD_SETPEN_D KBD_SETPEN_D
Value0x44D
FCodes.KBD_SETPEN_E KBD_SETPEN_E
Value0x44E
FCodes.KBD_SETPEN_F KBD_SETPEN_F
Value0x44F
FCodes.KBD_SETWIDTH_0 KBD_SETWIDTH_0
Value0x450
FCodes.KBD_SETWIDTH_1 KBD_SETWIDTH_1
Value0x451
FCodes.KBD_SETWIDTH_2 KBD_SETWIDTH_2
Value0x452
FCodes.KBD_SETWIDTH_3 KBD_SETWIDTH_3
Value0x453
FCodes.KBD_SETWIDTH_SLIDE KBD_SETWIDTH_SLIDE
Value0x45E
FCodes.KBD_SETWIDTH_OPTION KBD_SETWIDTH_OPTION
Value0x45F
FCodes.KBD_SETCAP_0 KBD_SETCAP_0
Value0x460
FCodes.KBD_SETCAP_1 KBD_SETCAP_1
Value0x461
FCodes.KBD_SETCAP_2 KBD_SETCAP_2
Value0x462
FCodes.KBD_SETCAP_3 KBD_SETCAP_3
Value0x463
FCodes.KBD_SETCAP_OPTION KBD_SETCAP_OPTION
Value0x46F
397
FCODES
CHAPTER 5 OBJECT REFERENCE
FCodes.KBD_SETDASH_0 KBD_SETDASH_0
Value0x470
FCodes.KBD_SETDASH_1 KBD_SETDASH_1
Value0x471
FCodes.KBD_SETDASH_2 KBD_SETDASH_2
Value0x472
FCodes.KBD_SETDASH_3 KBD_SETDASH_3
Value0x473
FCodes.KBD_SETDASH_4 KBD_SETDASH_4
Value0x474
FCodes.KBD_SETDASH_5 KBD_SETDASH_5
Value0x475
FCodes.KBD_SETDASH_6 KBD_SETDASH_6
Value0x476
FCodes.KBD_SETDASH_7 KBD_SETDASH_7
Value0x477
FCodes.KBD_SETDASH_8 KBD_SETDASH_8
Value0x478
FCodes.KBD_SETDASH_OPTION KBD_SETDASH_OPTION
Value0x47F
FCodes.KBD_SNAP_0 KBD_SNAP_0
Value0x480
FCodes.KBD_SNAP_1 KBD_SNAP_1
Value0x481
FCodes.KBD_GRAVITY_0 KBD_GRAVITY_0
Value0x482
FCodes.KBD_GRAVITY_1 KBD_GRAVITY_1
Value0x483
FCodes.KBD_SETKNOCKOUT KBD_SETKNOCKOUT
Value0x48A
FCodes.KBD_SETOVERPRINT KBD_SETOVERPRINT
Value0x48B
FCodes.KBD_SETFROMCOLOR KBD_SETFROMCOLOR
Value0x48C
398
FCODES
CHAPTER 5 OBJECT REFERENCE
FCodes.KBD_SETTINT KBD_SETTINT
Value0x48D
FCodes.KBD_SETSOLID KBD_SETSOLID
Value0x402
FCodes.KBD_SETDASH KBD_SETDASH
Value0x403
FCodes.KBD_DASH0 KBD_DASH0
Value0x404
FCodes.KBD_DASH1 KBD_DASH1
Value0x405
FCodes.KBD_INCDASH KBD_INCDASH
Value0x406
FCodes.KBD_DECDASH KBD_DECDASH
Value0x407
FCodes.KBD_DASHOPTION KBD_DASHOPTION
Value0x408
FCodes.KBD_CHECKSEL KBD_CHECKSEL
Value0x3C0
FCodes.KBD_CHECKDOC KBD_CHECKDOC
Value0x3C1
FCodes.KBD_CORRECT KBD_CORRECT
Value0x3C2
FCodes.KBD_ADDUSRDICT KBD_ADDUSRDICT
Value0x3C3
FCodes.KBD_ADDDOCDICT KBD_ADDDOCDICT
Value0x3C4
FCodes.KBD_ADDAUTOCORR KBD_ADDAUTOCORR
Value0x3C5
FCodes.KBD_DELUSRDICT KBD_DELUSRDICT
Value0x3C6
FCodes.KBD_DELDOCDICT KBD_DELDOCDICT
Value0x3C7
FCodes.KBD_CLEARAUTO KBD_CLEARAUTO
Value0x3C8
399
FCODES
CHAPTER 5 OBJECT REFERENCE
FCodes.KBD_CHANGEDICT KBD_CHANGEDICT
Value0x3C9
FCodes.KBD_SPELLRESET KBD_SPELLRESET
Value0x3CA
FCodes.KBD_CHECKPAGE KBD_CHECKPAGE
Value0x3CB
FCodes.KBD_SPOPTIONS KBD_SPOPTIONS
Value0x3CC
FCodes.KBD_HYPHENATE KBD_HYPHENATE
Value0x3CD
FCodes.KBD_CHECKBATCH KBD_CHECKBATCH
Value0x3CE
FCodes.KBD_REFORMATDOC KBD_REFORMATDOC
Value0x3CF
FCodes.KBD_ASC_CORRECT KBD_ASC_CORRECT
Value0x995
FCodes.KBD_ASC_ADDUSRDICT KBD_ASC_ADDUSRDICT
Value0x996
FCodes.KBD_ASC_ADDDOCDICT KBD_ASC_ADDDOCDICT
Value0x997
FCodes.KBD_ASC_ENABLE_AUTO_SPELL KBD_ASC_ENABLE_AUTO_SPELL_CHECK
_CHECK Value0x999
FCodes.TEXT_INSET_PROPS TEXT_INSET_PROPS
Value0x3E0
FCodes.UPDATE_INSETS UPDATE_INSETS
Value0x3E1
FCodes.SUPPRESS_INSETS SUPPRESS_INSETS
Value0x3E2
FCodes.KBD_CREATE_MULTIMEDIA_LINK KBD_CREATE_MULTIMEDIA_LINK
Value0x3E3
FCodes.KBD_CREATE_MULTIMEDIA_LINK KBD_CREATE_MULTIMEDIA_LINK_TBL
_TBL Value0x3E4
FCodes.KBD_MENUBARFOCUS KBD_MENUBARFOCUS
Value0x3F0
400
FCODES
CHAPTER 5 OBJECT REFERENCE
FCodes.KBD_SINGLE_QUOTE KBD_SINGLE_QUOTE
Value0x400
FCodes.KBD_DOUBLE_QUOTE KBD_DOUBLE_QUOTE
Value0x401
FCodes.HIGH_CHAR_PREV HIGH_CHAR_PREV
Value0x410
FCodes.HIGH_WORD_PREV HIGH_WORD_PREV
Value0x411
FCodes.HIGH_LINE_PREV HIGH_LINE_PREV
Value0x412
FCodes.HIGH_SENT_PREV HIGH_SENT_PREV
Value0x413
FCodes.HIGH_PGF_PREV HIGH_PGF_PREV
Value0x414
FCodes.HIGH_LINE_UP HIGH_LINE_UP
Value0x415
FCodes.HIGH_LINE_DOWN HIGH_LINE_DOWN
Value0x416
FCodes.HIGH_COL_TOP HIGH_COL_TOP
Value0x417
FCodes.HIGH_COL_BOT HIGH_COL_BOT
Value0x418
FCodes.HIGH_FLOW_BEG HIGH_FLOW_BEG
Value0x419
FCodes.HIGH_FLOW_END HIGH_FLOW_END
Value0x41A
FCodes.HIGH_LINE_BEG HIGH_LINE_BEG
Value0x41B
FCodes.HIGH_LINE_END HIGH_LINE_END
Value0x41C
FCodes.HIGH_ELEMENT_PREV HIGH_ELEMENT_PREV
Value0x420
FCodes.HIGH_ELEMENT_NEXT HIGH_ELEMENT_NEXT
Value0x421
401
FCODES
CHAPTER 5 OBJECT REFERENCE
FCodes.HIGH_SIBLINGS HIGH_SIBLINGS
Value0x422
FCodes.HIGH_PARENT HIGH_PARENT
Value0x423
FCodes.KBD_DFN_WEB_obsolete KBD_DFN_WEB_obsolete
Value0x500
FCodes.KBD_DFN_LIB_obsolete KBD_DFN_LIB_obsolete
Value0x501
FCodes.KBD_PASTE_RTF KBD_PASTE_RTF
Value0x502
FCodes.KBD_PAGELAYOUT KBD_PAGELAYOUT
Value0x503
FCodes.KBD_COPYRIGHT KBD_COPYRIGHT
Value0x504
FCodes.KBD_RESTOREFONT KBD_RESTOREFONT
Value0x505
FCodes.KBD_SYMFONT KBD_SYMFONT
Value0x506
FCodes.HIGH_CHAR_NEXT HIGH_CHAR_NEXT
Value0x510
FCodes.HIGH_WORD_NEXT HIGH_WORD_NEXT
Value0x511
FCodes.HIGH_LINE_NEXT HIGH_LINE_NEXT
Value0x512
FCodes.HIGH_SENT_NEXT HIGH_SENT_NEXT
Value0x513
FCodes.HIGH_PGF_NEXT HIGH_PGF_NEXT
Value0x514
FCodes.HIGH_SAMECB HIGH_SAMECB
Value0x515
FCodes.HIGH_SAMECOND HIGH_SAMECOND
Value0x516
FCodes.HIGH_HYPERTEXT HIGH_HYPERTEXT
Value0x517
402
FCODES
CHAPTER 5 OBJECT REFERENCE
FCodes.SEARCH_CB SEARCH_CB
Value0x518
FCodes.SEARCH_CBTAG SEARCH_CBTAG
Value0x519
FCodes.SEARCH_COND SEARCH_COND
Value0x51A
FCodes.SEARCH_CBOVERRIDE SEARCH_CBOVERRIDE
Value0x51B
FCodes.OBJ_SEL_FIRST OBJ_SEL_FIRST
Value0x600
FCodes.OBJ_SEL_NEXT OBJ_SEL_NEXT
Value0x601
FCodes.OBJ_SEL_EXTEND_NEXT OBJ_SEL_EXTEND_NEXT
Value0x602
FCodes.OBJ_SEL_PREV OBJ_SEL_PREV
Value0x603
FCodes.OBJ_SEL_NEXT_WRAP OBJ_SEL_NEXT_WRAP
Value0x604
FCodes.OBJ_SEL_PREV_WRAP OBJ_SEL_PREV_WRAP
Value0x605
FCodes.OBJ_SEL_LAST OBJ_SEL_LAST
Value0x606
FCodes.FOCUS_INPUT_DOC FOCUS_INPUT_DOC
Value0x620
FCodes.FOCUS_INPUT_SEARCH FOCUS_INPUT_SEARCH
Value0x621
FCodes.FOCUS_INPUT_MARKER FOCUS_INPUT_MARKER
Value0x622
FCodes.FOCUS_INPUT_SPELL FOCUS_INPUT_SPELL
Value0x623
FCodes.FOCUS_INPUT_HYPERTEXT FOCUS_INPUT_HYPERTEXT
Value0x624
FCodes.FOCUS_INPUT_PGFFMT FOCUS_INPUT_PGFFMT
Value0x626
403
FCODES
CHAPTER 5 OBJECT REFERENCE
FCodes.FOCUS_INPUT_FONTFMT FOCUS_INPUT_FONTFMT
Value0x627
FCodes.FOCUS_INPUT_COND FOCUS_INPUT_COND
Value0x629
FCodes.FOCUS_INPUT_CELLFMT FOCUS_INPUT_CELLFMT
Value0x62A
FCodes.FOCUS_INPUT_CUSTRS FOCUS_INPUT_CUSTRS
Value0x62B
FCodes.FOCUS_INPUT_TBLFMT FOCUS_INPUT_TBLFMT
Value0x62C
FCodes.FOCUS_INPUT_STRWIN FOCUS_INPUT_STRWIN
Value0x62D
FCodes.FOCUS_INPUT_VALIDATION FOCUS_INPUT_VALIDATION
Value0x62E
FCodes.FOCUS_INPUT_ATTREDITOR FOCUS_INPUT_ATTREDITOR
Value0x62F
FCodes.FOCUS_INPUT_ELEM_CTX FOCUS_INPUT_ELEM_CTX
Value0xA32
FCodes.KBD_CLOSE_SEARCH KBD_CLOSE_SEARCH
Value0x681
FCodes.KBD_CLOSE_MARKER KBD_CLOSE_MARKER
Value0x682
FCodes.KBD_CLOSE_SPELL KBD_CLOSE_SPELL
Value0x683
FCodes.KBD_CLOSE_PGFFMT KBD_CLOSE_PGFFMT
Value0x684
FCodes.KBD_CLOSE_FONTFMT KBD_CLOSE_FONTFMT
Value0x685
FCodes.KBD_CLOSE_COND KBD_CLOSE_COND
Value0x686
FCodes.KBD_CLOSE_CUSTRS KBD_CLOSE_CUSTRS
Value0x687
FCodes.KBD_CLOSE_TBLFMT KBD_CLOSE_TBLFMT
Value0x688
404
FCODES
CHAPTER 5 OBJECT REFERENCE
FCodes.KBD_CLOSE_STRWIN KBD_CLOSE_STRWIN
Value0x689
FCodes.KBD_CLOSE_VALIDATION KBD_CLOSE_VALIDATION
Value0x68A
FCodes.KBD_CLOSE_ATTREDITOR KBD_CLOSE_ATTREDITOR
Value0x68B
FCodes.KBD_CLOSE_ELEM_CTX KBD_CLOSE_ELEM_CTX
Value0x68C
FCodes.KBD_CLOSE_HYPERTEXT KBD_CLOSE_HYPERTEXT
Value0x68D
FCodes.KBD_PAUSE_1x00 KBD_PAUSE_1x00
Value0x630
FCodes.KBD_PAUSE_0x10 KBD_PAUSE_0x10
Value0x631
FCodes.KBD_PAUSE_0x01 KBD_PAUSE_0x01
Value0x632
FCodes.KBD_SLOW_0x00 KBD_SLOW_0x00
Value0x633
FCodes.KBD_SLOW_1x00 KBD_SLOW_1x00
Value0x634
FCodes.KBD_SLOW_0x10 KBD_SLOW_0x10
Value0x635
FCodes.KBD_SLOW_0x01 KBD_SLOW_0x01
Value0x636
FCodes.KBD_SET_TEXTFRAME_GRID KBD_SET_TEXTFRAME_GRID
Value0x666
FCodes.KBD_PURIFY_NEW_LEAKS KBD_PURIFY_NEW_LEAKS
Value0x650
FCodes.KBD_PURIFY_ALL_LEAKS KBD_PURIFY_ALL_LEAKS
Value0x651
FCodes.KBD_PURIFY_CLEAR_LEAKS KBD_PURIFY_CLEAR_LEAKS
Value0x652
FCodes.KBD_COUNT_SBLOCKS KBD_COUNT_SBLOCKS
Value0x653
405
FCODES
CHAPTER 5 OBJECT REFERENCE
FCodes.KBD_API KBD_API
Value0xDF0
FCodes.KBD_API_SHORTCUT KBD_API_SHORTCUT
Value0xDF1
FCodes.TYPEIN TYPEIN
Value0xDF2
FCodes.INLINE_TYPEIN INLINE_TYPEIN
Value0xDF3
FCodes.KBD_VIEW_API KBD_VIEW_API
Value0xDF4
FCodes.KBD_VIEW_API_SHORTCUT KBD_VIEW_API_SHORTCUT
Value0xDF5
FCodes.KBD_VIEW_SWITCH KBD_VIEW_SWITCH
Value0xDF6
FCodes.KBD_BACKSTACK KBD_BACKSTACK
Value0xEF0
FCodes.KBD_UPSTACK KBD_UPSTACK
Value0xEF1
FCodes.KBD_VIEWER KBD_VIEWER
Value0xF00
FCodes.TOGGLE_FLUID_VIEW TOGGLE_FLUID_VIEW
Value0x500
FCodes.KBD_DSEXIT KBD_DSEXIT
Value0xF01
FCodes.KBD_MEMFAIL KBD_MEMFAIL
Value0xF02
FCodes.KBD_SAVEMETA KBD_SAVEMETA
Value0xF03
FCodes.KBD_MEM_STATS KBD_MEM_STATS
Value0xF04
FCodes.KBD_CACHE_STATS KBD_CACHE_STATS
Value0xF05
FCodes.KBD_NEWVAR KBD_NEWVAR
Value0xF06
406
FCODES
CHAPTER 5 OBJECT REFERENCE
FCodes.KBD_UPDATEREF KBD_UPDATEREF
Value0xF07
FCodes.KBD_DEREFREF KBD_DEREFREF
Value0xF08
FCodes.KBD_HEATREF KBD_HEATREF
Value0xF09
FCodes.KBD_DOC_REPORT KBD_DOC_REPORT
Value0xF10
FCodes.KBD_FULLRULERS KBD_FULLRULERS
Value0x3BD
FCodes.KBD_ALLSELECT KBD_ALLSELECT
Value0xF20
FCodes.KBD_OBJSELECT KBD_OBJSELECT
Value0xF21
FCodes.KBD_TOOLWIN KBD_TOOLWIN
Value0xF22
FCodes.KBD_PGFWIN KBD_PGFWIN
Value0xF23
FCodes.KBD_FONTWIN KBD_FONTWIN
Value0xF24
FCodes.KBD_RESIZEBOX KBD_RESIZEBOX
Value0xF25
FCodes.KBD_MATHWIN KBD_MATHWIN
Value0xF26
FCodes.KBD_RESIZEBOXM KBD_RESIZEBOXM
Value0xF27
FCodes.KBD_ELEMENTWIN KBD_ELEMENTWIN
Value0xF28
FCodes.KBD_SMALLTOOLWIN KBD_SMALLTOOLWIN
Value0xF29
FCodes.KBD_OBJSELECT_NOPREF KBD_OBJSELECT_NOPREF
Value0xF2A
FCodes.KBD_HOTSPOT KBD_HOTSPOT
Value0x4FD
407
FCODES
CHAPTER 5 OBJECT REFERENCE
FCodes.KBD_EDITHOTSPOT KBD_EDITHOTSPOT
Value0x4FE
FCodes.KBD_DELINKHOTSPOT KBD_DELINKHOTSPOT
Value0x507
FCodes.KBD_ZOOMIN KBD_ZOOMIN
Value0xF30
FCodes.KBD_ZOOMOUT KBD_ZOOMOUT
Value0xF31
FCodes.KBD_ZOOM_FIT_PAGE KBD_ZOOM_FIT_PAGE
Value0xF32
FCodes.KBD_ZOOM_FIT_WINDOW KBD_ZOOM_FIT_WINDOW
Value0xF33
FCodes.KBD_ZOOM KBD_ZOOM
Value0xF34
FCodes.KBD_ZOOM100 KBD_ZOOM100
Value0xF35
FCodes.KBD_ZOOM_SET KBD_ZOOM_SET
Value0xF3C
FCodes.KBD_ZOOM_FIT_TEXTFRAME KBD_ZOOM_FIT_TEXTFRAME
Value0xF3F
FCodes.KBD_ZOOM_AUTOFIT_AFTER_Z KBD_ZOOM_AUTOFIT_AFTER_ZOOM
OOM Value0xF1A
FCodes.KBD_TAGSTATUS KBD_TAGSTATUS
Value0xF36
FCodes.KBD_PAGESTATUS KBD_PAGESTATUS
Value0xF37
FCodes.KBD_HSCROLL KBD_HSCROLL
Value0xF38
FCodes.KBD_VSCROLL KBD_VSCROLL
Value0xF39
FCodes.KBD_RENAMEPAGE KBD_RENAMEPAGE
Value0xF3A
FCodes.KBD_RENAMEFRAME KBD_RENAMEFRAME
Value0xF3B
408
FCODES
CHAPTER 5 OBJECT REFERENCE
FCodes.KBD_FONTQUICK KBD_FONTQUICK
Value0xF40
FCodes.KBD_PGFQUICK KBD_PGFQUICK
Value0xF41
FCodes.KBD_VARQUICK KBD_VARQUICK
Value0xF42
FCodes.KBD_CELLFMTQUICK KBD_CELLFMTQUICK
Value0xF43
FCodes.KBD_CONDINQUICK KBD_CONDINQUICK
Value0xF44
FCodes.KBD_CONDNOTINQUICK KBD_CONDNOTINQUICK
Value0xF45
FCodes.KBD_UNCOND KBD_UNCOND
Value0xF46
FCodes.KBD_CONDVISONLYQUICK KBD_CONDVISONLYQUICK
Value0xF47
FCodes.KBD_INSERTQUICK KBD_INSERTQUICK
Value0xF48
FCodes.KBD_WRAPQUICK KBD_WRAPQUICK
Value0xF49
FCodes.KBD_CHANGEQUICK KBD_CHANGEQUICK
Value0xF4C
FCodes.KBD_ATTREDITQUICK KBD_ATTREDITQUICK
Value0xF4D
FCodes.PGF_DESIGN_CAT PGF_DESIGN_CAT
Value0xF4E
FCodes.CHAR_DESIGN_CAT CHAR_DESIGN_CAT
Value0xF4F
FCodes.TBL_DESIGN_CAT TBL_DESIGN_CAT
Value0xF5F
FCodes.KBD_NOCHANGEDB KBD_NOCHANGEDB
Value0xF4A
FCodes.KBD_RESETDB KBD_RESETDB
Value0xF4B
409
FCODES
CHAPTER 5 OBJECT REFERENCE
FCodes.KBD_SMEQN KBD_SMEQN
Value0xF50
FCodes.KBD_MEDEQN KBD_MEDEQN
Value0xF51
FCodes.KBD_LGEQN KBD_LGEQN
Value0xF52
FCodes.KBD_PUTINLINE KBD_PUTINLINE
Value0xF53
FCodes.KBD_ANTIPUTINLINE KBD_ANTIPUTINLINE
Value0xF54
FCodes.KBD_EVACUATE KBD_EVACUATE
Value0xF60
FCodes.KBD_VERIFYCONTEXT KBD_VERIFYCONTEXT
Value0xF61
FCodes.KBD_SAVEASDBRE KBD_SAVEASDBRE
Value0xF70
FCodes.KBD_TEST_MODAL KBD_TEST_MODAL
Value0xF71
FCodes.KBD_TEST_MODELESS KBD_TEST_MODELESS
Value0xF72
FCodes.KBD_STUFF_ITEM KBD_STUFF_ITEM
Value0xF73
FCodes.KBD_SAVESAS KBD_SAVESAS
Value0xF74
FCodes.KBD_TEST_PRINTDBRE KBD_TEST_PRINTDBRE
Value0xF75
FCodes.KBD_SAVEFMX KBD_SAVEFMX
Value0xF76
FCodes.KBD_SAVEDBRE KBD_SAVEDBRE
Value0xF77
FCodes.KBD_CAPTURE_LIVE_DIALOG KBD_CAPTURE_LIVE_DIALOG
Value0xF78
FCodes.KBD_RM_MODE KBD_RM_MODE
Value0xF79
410
FCODES
CHAPTER 5 OBJECT REFERENCE
FCodes.KBD_DRE_MODE_X KBD_DRE_MODE_X
Value0xF7A
FCodes.KBD_DRE_MODE_W KBD_DRE_MODE_W
Value0xF7B
FCodes.KBD_DRE_MODE_M KBD_DRE_MODE_M
Value0xF7C
FCodes.KBD_TABLE_INS KBD_TABLE_INS
Value0xF80
FCodes.KBD_TABLE_FORMAT KBD_TABLE_FORMAT
Value0xF81
FCodes.KBD_TABLE_CELLFMT KBD_TABLE_CELLFMT
Value0xF84
FCodes.KBD_TABLE_ROWFMT KBD_TABLE_ROWFMT
Value0xF85
FCodes.KBD_TABLE_CUSTRS KBD_TABLE_CUSTRS
Value0xF86
FCodes.KBD_TABLE_ADDRC KBD_TABLE_ADDRC
Value0xF87
FCodes.KBD_TABLE_RESIZECOL KBD_TABLE_RESIZECOL
Value0xF88
FCodes.KBD_TABLE_STRADDLE KBD_TABLE_STRADDLE
Value0xF89
FCodes.KBD_TABLE_CONVERT KBD_TABLE_CONVERT
Value0xF8A
FCodes.KBD_TABLE_DEBUG KBD_TABLE_DEBUG
Value0xF8B
FCodes.KBD_TABLE_RULES KBD_TABLE_RULES
Value0xF8C
FCodes.KBD_TABLE_EXIT_IP KBD_TABLE_EXIT_IP
Value0xFC0
FCodes.KBD_TBL_DLG_UNIFY_TF KBD_TBL_DLG_UNIFY_TF
Value0xF90
FCodes.KBD_TBL_DLG_UNIFY_CF KBD_TBL_DLG_UNIFY_CF
Value0xF91
411
FCODES
CHAPTER 5 OBJECT REFERENCE
FCodes.KBD_TBL_DLG_ADD_ABOVE KBD_TBL_DLG_ADD_ABOVE
Value0xF92
FCodes.KBD_TBL_DLG_ADD_BELOW KBD_TBL_DLG_ADD_BELOW
Value0xF93
FCodes.KBD_TBL_DLG_ADD_LEFT KBD_TBL_DLG_ADD_LEFT
Value0xF94
FCodes.KBD_TBL_DLG_ADD_RIGHT KBD_TBL_DLG_ADD_RIGHT
Value0xF95
FCodes.KBD_TBL_DLG_CLEAR_EMPTY KBD_TBL_DLG_CLEAR_EMPTY
Value0xF96
FCodes.KBD_TBL_DLG_CLEAR_X KBD_TBL_DLG_CLEAR_X
Value0xF97
FCodes.KBD_TBL_DLG_PASTE_REPL KBD_TBL_DLG_PASTE_REPL
Value0xF98
FCodes.KBD_TBL_DLG_PASTE_BEFORE KBD_TBL_DLG_PASTE_BEFORE
Value0xF99
FCodes.KBD_TBL_DLG_PASTE_AFTER KBD_TBL_DLG_PASTE_AFTER
Value0xF9A
FCodes.KBD_TABLEWIN KBD_TABLEWIN
Value0xFBB
FCodes.TBL_APPLY_CAT_TO_SEL TBL_APPLY_CAT_TO_SEL
Value0xFBC
FCodes.KBD_CLOSE_TABLE_CATALOG KBD_CLOSE_TABLE_CATALOG
Value0xFBD
FCodes.TBL_APPLY_TAG TBL_APPLY_TAG
Value0xFBE
FCodes.KBD_COPYCELLFMT KBD_COPYCELLFMT
Value0xF9B
FCodes.KBD_COPYCOLW KBD_COPYCOLW
Value0xF9C
FCodes.KBD_COPYCOND KBD_COPYCOND
Value0xF9D
FCodes.KBD_USEELTDEFSFROM KBD_USEELTDEFSFROM
Value0xF9E
412
FCODES
CHAPTER 5 OBJECT REFERENCE
FCodes.KBD_COPYATTRS KBD_COPYATTRS
Value0xF9F
FCodes.KBD_ATOMIZE_INSET KBD_ATOMIZE_INSET
Value0xFAA
FCodes.KBD_SWAP_RED_BLUE KBD_SWAP_RED_BLUE
Value0xFAB
FCodes.KBD_REWRAP_INLINE_MATH KBD_REWRAP_INLINE_MATH
Value0xFAC
FCodes.KBD_MODE_ROTATE_TOOL KBD_MODE_ROTATE_TOOL
Value0xFAD
FCodes.KBD_XYZZY KBD_XYZZY
Value0xFED
FCodes.KBD_XYZZZ KBD_XYZZZ
Value0xEE0
FCodes.KBD_XYZZQ KBD_XYZZQ
Value0xEE1
FCodes.KBD_ACTIVATE_IN_PDF_BYDEFA KBD_ACTIVATE_IN_PDF_BYDEFAULT
ULT Value0x4FA
FCodes.KBD_OPEN_IN_POPUP_WIN_IN_ KBD_OPEN_IN_POPUP_WIN_IN_PDF
PDF Value0x4FB
FCodes.KBD_GRAPHIC_SET_NAME KBD_GRAPHIC_SET_NAME
Value0x4FC
FCodes.CMD_OPEN_DITAMAP_COMPON CMD_OPEN_DITAMAP_COMPONENT
ENT Value0xF14
FCodes.PGF_DESIGNKIT_APPLY PGF_DESIGNKIT_APPLY
Value0xAAA
FCodes.CHAR_DESIGNKIT_APPLY CHAR_DESIGNKIT_APPLY
Value0xAAB
FCodes.TBL_DESIGNKIT_APPLY TBL_DESIGNKIT_APPLY
Value0xAAC
FCodes.PGF_DESIGNKIT_UPDATEALL PGF_DESIGNKIT_UPDATEALL
Value0xAAD
FCodes.CHAR_DESIGNKIT_UPDATEALL CHAR_DESIGNKIT_UPDATEALL
Value0xAAE
413
FCODES
CHAPTER 5 OBJECT REFERENCE
FCodes.TBL_DESIGNKIT_UPDATEALL TBL_DESIGNKIT_UPDATEALL
Value0xAAF
FCodes.PGF_DESIGNKIT_NEWFORMAT PGF_DESIGNKIT_NEWFORMAT
Value0xB00
FCodes.CHAR_DESIGNKIT_NEWFORMAT CHAR_DESIGNKIT_NEWFORMAT
Value0xB01
FCodes.TBL_DESIGNKIT_NEWFORMAT TBL_DESIGNKIT_NEWFORMAT
Value0xB02
FCodes.PGF_DESIGNKIT_UPDATEOPTION PGF_DESIGNKIT_UPDATEOPTIONS
S Value0xB03
FCodes.CHAR_DESIGNKIT_UPDATEOPTIO CHAR_DESIGNKIT_UPDATEOPTIONS
NS Value0xB04
FCodes.TBL_DESIGNKIT_UPDATEOPTION TBL_DESIGNKIT_UPDATEOPTIONS
S Value0xB05
FCodes.KBD_PGFFMT_DELETE KBD_PGFFMT_DELETE
Value0xB06
FCodes.KBD_CHARFMT_DELETE KBD_CHARFMT_DELETE
Value0xB07
FCodes.KBD_TBLFMT_DELETE KBD_TBLFMT_DELETE
Value0xB08
FCodes.KBD_STYLEFMT_DELETE_UNUSE KBD_STYLEFMT_DELETE_UNUSED
D Value0xB10
FCodes.KBD_PGFFMT_DELETE_UNUSED KBD_PGFFMT_DELETE_UNUSED
Value0xB13
FCodes.KBD_CHARFMT_DELETE_UNUSE KBD_CHARFMT_DELETE_UNUSED
D Value0xB14
FCodes.KBD_TBLFMT_DELETE_UNUSED KBD_TBLFMT_DELETE_UNUSED
Value0xB15
FCodes.PGF_DESIGNKIT_RESET PGF_DESIGNKIT_RESET
Value0xABA
FCodes.CHAR_DESIGNKIT_RESET CHAR_DESIGNKIT_RESET
Value0xABB
FCodes.TBL_DESIGNKIT_RESET TBL_DESIGNKIT_RESET
Value0xABC
414
FCODES
CHAPTER 5 OBJECT REFERENCE
FCodes.KBD_STYLEFMT_DELETE KBD_STYLEFMT_DELETE
Value0xBB0
FCodes.KBD_STYLE_CATALOG KBD_STYLE_CATALOG
Value0xBB1
FCodes.KBD_STYLE_DESIGNER KBD_STYLE_DESIGNER
Value0xBB2
FCodes.CONDTEXT_KIT_APPLY CONDTEXT_KIT_APPLY
Value0xB09
FCodes.ALT_TXT_INSET ALT_TXT_INSET
Value0xB11
FCodes.ALT_GFX_INSET ALT_GFX_INSET
Value0xB12
FCodes.KBD_TBLSEL_CELL KBD_TBLSEL_CELL
Value0xFA0
FCodes.KBD_TBLSEL_ROW KBD_TBLSEL_ROW
Value0xFA1
FCodes.KBD_TBLSEL_COL KBD_TBLSEL_COL
Value0xFA2
FCodes.KBD_TBLSEL_TABLE KBD_TBLSEL_TABLE
Value0xFA3
FCodes.KBD_TBLSEL_CELLTEXT KBD_TBLSEL_CELLTEXT
Value0xFA4
FCodes.KBD_TBLSEL_COLBODY KBD_TBLSEL_COLBODY
Value0xFA5
FCodes.KBD_TBLIP_TOPLEFT KBD_TBLIP_TOPLEFT
Value0xFB0
FCodes.KBD_TBLIP_RIGHT KBD_TBLIP_RIGHT
Value0xFB1
FCodes.KBD_TBLIP_LEFT KBD_TBLIP_LEFT
Value0xFB2
FCodes.KBD_TBLIP_ABOVE KBD_TBLIP_ABOVE
Value0xFB3
FCodes.KBD_TBLIP_BELOW KBD_TBLIP_BELOW
Value0xFB4
415
FCODES
CHAPTER 5 OBJECT REFERENCE
FCodes.KBD_TBLIP_LEFTMOST KBD_TBLIP_LEFTMOST
Value0xFB5
FCodes.KBD_TBLIP_RIGHTMOST KBD_TBLIP_RIGHTMOST
Value0xFB6
FCodes.KBD_TBLIP_NEXT KBD_TBLIP_NEXT
Value0xFB7
FCodes.KBD_TBLIP_PREV KBD_TBLIP_PREV
Value0xFB8
FCodes.KBD_TBLIP_TOP KBD_TBLIP_TOP
Value0xFB9
FCodes.KBD_TBLIP_BOTTOM KBD_TBLIP_BOTTOM
Value0xFBA
FCodes.PGF_KBD_SIDEBODY PGF_KBD_SIDEBODY
Value0xFC9
FCodes.PGF_KBD_SIDEHEAD_FIRST_BAS PGF_KBD_SIDEHEAD_FIRST_BASELINE
ELINE Value0xFCA
FCodes.PGF_KBD_SIDEHEAD_LAST_BASE PGF_KBD_SIDEHEAD_LAST_BASELINE
LINE Value0xFCB
FCodes.PGF_KBD_SIDEHEAD_TOP PGF_KBD_SIDEHEAD_TOP
Value0xFCC
FCodes.PGF_KBD_RUN_IN PGF_KBD_RUN_IN
Value0xFCD
FCodes.PGF_KBD_FULLSTRADDLE PGF_KBD_FULLSTRADDLE
Value0xFCE
FCodes.PGF_KBD_BODYSTRADDLE PGF_KBD_BODYSTRADDLE
Value0xFCF
FCodes.KBD_TBL_DLG_SHRINKWRAP KBD_TBL_DLG_SHRINKWRAP
Value0xFD0
FCodes.ELEM_INS_CAT_AT_SEL ELEM_INS_CAT_AT_SEL
Value0xA10
FCodes.ELEM_WRAP_CAT_AT_SEL ELEM_WRAP_CAT_AT_SEL
Value0xA11
FCodes.ELEM_CHANGE_CAT_AT_SEL ELEM_CHANGE_CAT_AT_SEL
Value0xA12
416
FCODES
CHAPTER 5 OBJECT REFERENCE
FCodes.ELEM_INSERT_CUSTOM_1 ELEM_INSERT_CUSTOM_1
Value0xA21
FCodes.ELEM_INSERT_CUSTOM_2 ELEM_INSERT_CUSTOM_2
Value0xA22
FCodes.ELEM_INSERT_CUSTOM_3 ELEM_INSERT_CUSTOM_3
Value0xA23
FCodes.ELEM_INSERT_CUSTOM_4 ELEM_INSERT_CUSTOM_4
Value0xA24
FCodes.ELEM_INSERT_CUSTOM_5 ELEM_INSERT_CUSTOM_5
Value0xA25
FCodes.ELEM_INSERT_CUSTOM_6 ELEM_INSERT_CUSTOM_6
Value0xA26
FCodes.ELEM_INSERT_CUSTOM_7 ELEM_INSERT_CUSTOM_7
Value0xA27
FCodes.ELEM_INSERT_CUSTOM_8 ELEM_INSERT_CUSTOM_8
Value0xA28
FCodes.ELEM_INSERT_CUSTOM_9 ELEM_INSERT_CUSTOM_9
Value0xA29
FCodes.ELEM_INSERT_CUSTOM_10 ELEM_INSERT_CUSTOM_10
Value0xA2A
FCodes.KBD_STRIP_FLOWSTRUCTURE KBD_STRIP_FLOWSTRUCTURE
Value0xA30
FCodes.KBD_SHOW_ELEM_CTX KBD_SHOW_ELEM_CTX
Value0xA31
FCodes.KBD_NORMALIZE_TAGS KBD_NORMALIZE_TAGS
Value0xA33
FCodes.KBD_STRWIN KBD_STRWIN
Value0xFD1
FCodes.KBD_ELEM_BORDER KBD_ELEM_BORDER
Value0xFD2
FCodes.KBD_ELEM_MERGE_1ST KBD_ELEM_MERGE_1ST
Value0xFD3
FCodes.KBD_ELEM_MERGE_LAST KBD_ELEM_MERGE_LAST
Value0xFD4
417
FCODES
CHAPTER 5 OBJECT REFERENCE
FCodes.KBD_ELEM_SPLIT KBD_ELEM_SPLIT
Value0xFD5
FCodes.KBD_ELEM_UNWRAP KBD_ELEM_UNWRAP
Value0xFD6
FCodes.KBD_ELEM_CAT_OPTS KBD_ELEM_CAT_OPTS
Value0xFD7
FCodes.KBD_SETELCATSTRICT KBD_SETELCATSTRICT
Value0xFD8
FCodes.KBD_SETELCATLOOSE KBD_SETELCATLOOSE
Value0xFD9
FCodes.KBD_SETELCATCHILD KBD_SETELCATCHILD
Value0xFDA
FCodes.KBD_SETELCATALL KBD_SETELCATALL
Value0xFDB
FCodes.KBD_SETELCATFREQ KBD_SETELCATFREQ
Value0xFF7
FCodes.ELEM_BAM ELEM_BAM
Value0xFDC
FCodes.KBD_ELEM_TAGS KBD_ELEM_TAGS
Value0xFDD
FCodes.KBD_BANNER_TEXT KBD_BANNER_TEXT
Value0x137
FCodes.KBD_ELEM_PROMOTE KBD_ELEM_PROMOTE
Value0xFDE
FCodes.KBD_ELEM_DEMOTE KBD_ELEM_DEMOTE
Value0xFDF
FCodes.KBD_VALIDATION KBD_VALIDATION
Value0xFE0
FCodes.KBD_VAL_ELEM KBD_VAL_ELEM
Value0xFE1
FCodes.KBD_VAL_FLOW KBD_VAL_FLOW
Value0xFE2
FCodes.KBD_VAL_DOC KBD_VAL_DOC
Value0xFE3
418
FCODES
CHAPTER 5 OBJECT REFERENCE
FCodes.KBD_VAL_IGNORE KBD_VAL_IGNORE
Value0xFE4
FCodes.KBD_VAL_START KBD_VAL_START
Value0xFE5
FCodes.KBD_VAL_ALLOW KBD_VAL_ALLOW
Value0xFE6
FCodes.KBD_VAL_CLEAR KBD_VAL_CLEAR
Value0xFE7
FCodes.SW_CSR_UP SW_CSR_UP
Value0xFE8
FCodes.SW_CSR_DOWN SW_CSR_DOWN
Value0xFE9
FCodes.SW_CSR_RIGHT SW_CSR_RIGHT
Value0xFEA
FCodes.SW_CSR_LEFT SW_CSR_LEFT
Value0xFEB
FCodes.KBD_INLINE_ATTREDTR KBD_INLINE_ATTREDTR
Value0x29B
FCodes.KBD_ATTRIBUTE_EDIT KBD_ATTRIBUTE_EDIT
Value0xFEC
FCodes.KBD_ATTR_CONFIG_FILE_MAKER KBD_ATTR_CONFIG_FILE_MAKER
Value0xFFA
FCodes.KBD_ATTR_DISP_OPTS KBD_ATTR_DISP_OPTS
Value0xFEE
FCodes.KBD_FB_EDIT_PREFS KBD_FB_EDIT_PREFS
Value0xFEF
FCodes.KBD_REMOVE_STRUCT KBD_REMOVE_STRUCT
Value0xFF0
FCodes.KBD_TOGGLE_INCLUSION KBD_TOGGLE_INCLUSION
Value0xFF1
FCodes.KBD_TOGGLE_COLLAPSE KBD_TOGGLE_COLLAPSE
Value0xFF2
FCodes.KBD_TOGGLE_COLLAPSE_ALL KBD_TOGGLE_COLLAPSE_ALL
Value0xFF3
419
FCODES
CHAPTER 5 OBJECT REFERENCE
FCodes.KBD_TOGGLE_COLLAPSE_CHILD KBD_TOGGLE_COLLAPSE_CHILDREN
REN Value0xA0D
FCodes.KBD_ELEM_TRANSPOSE_PREV KBD_ELEM_TRANSPOSE_PREV
Value0xFF4
FCodes.KBD_ELEM_TRANSPOSE_NEXT KBD_ELEM_TRANSPOSE_NEXT
Value0xFF5
FCodes.KBD_VAL_IGNORE_ATTR KBD_VAL_IGNORE_ATTR
Value0xFF6
FCodes.KBD_NAMESPACES KBD_NAMESPACES
Value0xFF8
FCodes.KBD_TOGGLE_STRUCT_AND_DO KBD_TOGGLE_STRUCT_AND_DOCWIN
CWIN Value0xFF9
FCodes.FM_SEPARATOR FM_SEPARATOR
Value0xF12
FCodes.FM_TERMINATE FM_TERMINATE
Value0xFFF
FCodes.FM_RPT_CMDS_BY_TAG FM_RPT_CMDS_BY_TAG
Value0xD00
FCodes.FM_RPT_CMDS_BY_SHORTCUT FM_RPT_CMDS_BY_SHORTCUT
Value0xD01
FCodes.KBD_PASTESPECIAL KBD_PASTESPECIAL
Value0xD10
FCodes.KBD_CLOSE_TOP_PALETTE KBD_CLOSE_TOP_PALETTE
Value0xD20
FCodes.KBD_CLOSE_PARAGRAPH_CATAL KBD_CLOSE_PARAGRAPH_CATALOG
OG Value0xD21
FCodes.KBD_CLOSE_CHARACTER_CATAL KBD_CLOSE_CHARACTER_CATALOG
OG Value0xD22
FCodes.KBD_CLOSE_TOOLS_PALETTE KBD_CLOSE_TOOLS_PALETTE
Value0xD23
FCodes.KBD_CLOSE_EQUATIONS_PALETT KBD_CLOSE_EQUATIONS_PALETTE
E Value0xD24
FCodes.KBD_CLOSE_ELEMENT_CATALOG KBD_CLOSE_ELEMENT_CATALOG
Value0xD26
420
FCODES
CHAPTER 5 OBJECT REFERENCE
FCodes.KBD_CLOSE_PARAGRAPH_DESIG KBD_CLOSE_PARAGRAPH_DESIGNER
NER Value0xD28
FCodes.KBD_CLOSE_CHARACTER_DESIG KBD_CLOSE_CHARACTER_DESIGNER
NER Value0xD29
FCodes.KBD_CLOSE_TABLE_DESIGNER KBD_CLOSE_TABLE_DESIGNER
Value0xD2A
FCodes.KBD_WINDOWFULL_UP KBD_WINDOWFULL_UP
Value0xD40
FCodes.KBD_WINDOWFULL_DOWN KBD_WINDOWFULL_DOWN
Value0xD41
FCodes.KBD_VIEWER_MAKE_DOCUMEN KBD_VIEWER_MAKE_DOCUMENT
T Value0xD50
FCodes.KBD_VIEWER_MAKE_PALETTE KBD_VIEWER_MAKE_PALETTE
Value0xD51
FCodes.KBD_VIEWER_MAKE_MODELESS KBD_VIEWER_MAKE_MODELESSDIALOG
DIALOG Value0xD52
FCodes.KBD_Item1stLogical KBD_Item1stLogical
Value0xD60
FCodes.KBD_ItemNextLogical KBD_ItemNextLogical
Value0xD61
FCodes.KBD_ItemPrevLogical KBD_ItemPrevLogical
Value0xD62
FCodes.KBD_ItemNextPhysical KBD_ItemNextPhysical
Value0xD63
FCodes.KBD_ItemPrevPhysical KBD_ItemPrevPhysical
Value0xD64
FCodes.KBD_ItemLeft KBD_ItemLeft
Value0xD65
FCodes.KBD_ItemRight KBD_ItemRight
Value0xD66
FCodes.KBD_ItemUp KBD_ItemUp
Value0xD67
FCodes.KBD_ItemDown KBD_ItemDown
Value0xD68
421
FCODES
CHAPTER 5 OBJECT REFERENCE
FCodes.KBD_ItemSelect KBD_ItemSelect
Value0xD69
FCodes.KBD_ItemFirstFocus KBD_ItemFirstFocus
Value0xD6A
FCodes.INIT_DIALOG INIT_DIALOG
Value0xD80
FCodes.KBD_RENAMEORPLAIN KBD_RENAMEORPLAIN
Value0x900
FCodes.KBD_WIN_CASCADE KBD_WIN_CASCADE
Value0x903
FCodes.KBD_WIN_TILE KBD_WIN_TILE
Value0x904
FCodes.KBD_TAB_LEFT KBD_TAB_LEFT
Value0x906
FCodes.KBD_TAB_CENTER KBD_TAB_CENTER
Value0x907
FCodes.KBD_TAB_RIGHT KBD_TAB_RIGHT
Value0x908
FCodes.KBD_TAB_DECIMAL KBD_TAB_DECIMAL
Value0x909
FCodes.KBD_PRINTSETUP KBD_PRINTSETUP
Value0x90A
FCodes.KBD_MINIMIZE KBD_MINIMIZE
Value0x90F
FCodes.KBD_MAXIMIZE KBD_MAXIMIZE
Value0x910
FCodes.KBD_RESTORE KBD_RESTORE
Value0x911
FCodes.KBD_EDITLINKS KBD_EDITLINKS
Value0x912
FCodes.KBD_INSERTOBJECT KBD_INSERTOBJECT
Value0x913
FCodes.KBD_CONTEXTMENU KBD_CONTEXTMENU
Value0x914
422
FCODES
CHAPTER 5 OBJECT REFERENCE
FCodes.KBD_EMBEDDED00 KBD_EMBEDDED00
Value0x920
FCodes.KBD_EMBEDDED01 KBD_EMBEDDED01
Value0x921
FCodes.KBD_EMBEDDED02 KBD_EMBEDDED02
Value0x922
FCodes.KBD_EMBEDDED03 KBD_EMBEDDED03
Value0x923
FCodes.KBD_EMBEDDED04 KBD_EMBEDDED04
Value0x924
FCodes.KBD_EMBEDDED05 KBD_EMBEDDED05
Value0x925
FCodes.KBD_EMBEDDED06 KBD_EMBEDDED06
Value0x926
FCodes.KBD_EMBEDDED07 KBD_EMBEDDED07
Value0x927
FCodes.KBD_EMBEDDED08 KBD_EMBEDDED08
Value0x928
FCodes.KBD_EMBEDDED09 KBD_EMBEDDED09
Value0x92A
FCodes.KBD_EMBEDDED10 KBD_EMBEDDED10
Value0x92B
FCodes.KBD_EMBEDDED11 KBD_EMBEDDED11
Value0x92C
FCodes.KBD_EMBEDDED12 KBD_EMBEDDED12
Value0x92D
FCodes.KBD_EMBEDDED13 KBD_EMBEDDED13
Value0x92E
FCodes.KBD_EMBEDDED14 KBD_EMBEDDED14
Value0x92F
FCodes.KBD_EMBEDDED15 KBD_EMBEDDED15
Value0x930
FCodes.KBD_EMBEDDED16 KBD_EMBEDDED16
Value0x931
423
FCODES
CHAPTER 5 OBJECT REFERENCE
FCodes.KBD_EMBEDDED17 KBD_EMBEDDED17
Value0x932
FCodes.KBD_EMBEDDED18 KBD_EMBEDDED18
Value0x933
FCodes.KBD_EMBEDDED19 KBD_EMBEDDED19
Value0x934
FCodes.KBD_EMBEDDEDMAX KBD_EMBEDDEDMAX
Value0x94F
FCodes.KBD_GOTOLINEN KBD_GOTOLINEN
Value0x970
FCodes.KBD_SHOWNEXT KBD_SHOWNEXT
Value0x971
FCodes.KBD_SHOWPREV KBD_SHOWPREV
Value0x972
FCodes.KBD_SCREENMODE_TOGGLE KBD_SCREENMODE_TOGGLE
Value0x978
FCodes.KBD_SCREENMODE_STANDARD KBD_SCREENMODE_STANDARD
Value0x979
FCodes.KBD_SCREENMODE_FULLSCREE KBD_SCREENMODE_FULLSCREEN_UI
N_UI Value0x97A
FCodes.KBD_SCREENMODE_FULLSCREE KBD_SCREENMODE_FULLSCREEN
N Value0x97B
FCodes.KBD_UI_PREFERENCE KBD_UI_PREFERENCE
Value0x980
FCodes.KBD_UIALERTSTRINGS_PREF KBD_UIALERTSTRINGS_PREF
Value0x981
FCodes.KBD_TOOLBAR_SHOWALL KBD_TOOLBAR_SHOWALL
Value0x989
FCodes.KBD_TOOLBAR_HIDEALL KBD_TOOLBAR_HIDEALL
Value0x98A
FCodes.KBD_TOOLBAR_BASE KBD_TOOLBAR_BASE
Value0x98F
FCodes.KBD_BROWSE_URL KBD_BROWSE_URL
Value0x9A0
424
FCODES
CHAPTER 5 OBJECT REFERENCE
FCodes.KBD_MATH_BASE KBD_MATH_BASE
Value0x1000
FCodes.TEXTSEL_QUICK_COPY TEXTSEL_QUICK_COPY
Value0x0001
FCodes.TEXTSEL_EXTEND TEXTSEL_EXTEND
Value0x0002
FCodes.TEXTSEL_EXTEND_WORD TEXTSEL_EXTEND_WORD
Value0x0004
FCodes.TEXTSEL_EXTEND_LINE TEXTSEL_EXTEND_LINE
Value0x0008
FCodes.TEXTSEL_EXTEND_PGF TEXTSEL_EXTEND_PGF
Value0x0010
FCodes.TEXTSEL_WORD TEXTSEL_WORD
Value0x0020
FCodes.TEXTSEL_LINE TEXTSEL_LINE
Value0x0040
FCodes.TEXTSEL_PGF TEXTSEL_PGF
Value0x0080
FCodes.TEXTSEL_SELECT_ONLY TEXTSEL_SELECT_ONLY
Value0x0100
FCodes.TEXTSEL_EXTEND_SENT TEXTSEL_EXTEND_SENT
Value0x0200
FCodes.TEXTSEL_SENT TEXTSEL_SENT
Value0x0400
FCodes.TEXTSEL_EXTEND_ELEMENT TEXTSEL_EXTEND_ELEMENT
Value0x0800
FCodes.TEXTSEL_ELEMENT TEXTSEL_ELEMENT
Value0x1000
FCodes.TEXTSEL_DRAGGING TEXTSEL_DRAGGING
Value0x2000
FCodes.EXTEND_SEL EXTEND_SEL
Value(0x0002|0x0004|0x0008|0x0010|0x0800)
FCodes.MIF_SAVE_TEXT MIF_SAVE_TEXT
Value0x000001
425
FCODES
CHAPTER 5 OBJECT REFERENCE
FCodes.MIF_SAVE_TAGS MIF_SAVE_TAGS
Value0x000002
FCodes.MIF_SAVE_FMTS MIF_SAVE_FMTS
Value0x000004
FCodes.MIF_SAVE_FONTS MIF_SAVE_FONTS
Value0x000008
FCodes.MIF_SAVE_MKRS MIF_SAVE_MKRS
Value0x000010
FCodes.MIF_SAVE_AFMS MIF_SAVE_AFMS
Value0x000020
FCodes.MIF_SAVE_LAYT MIF_SAVE_LAYT
Value0x000040
FCodes.MIF_SAVE_MPAGE MIF_SAVE_MPAGE
Value0x000080
FCodes.MIF_SAVE_FCAT MIF_SAVE_FCAT
Value0x000100
FCodes.MIF_SAVE_PCAT MIF_SAVE_PCAT
Value0x000200
FCodes.MIF_SAVE_CCAT MIF_SAVE_CCAT
Value0x000400
FCodes.MIF_SAVE_TMPLT MIF_SAVE_TMPLT
Value0x000800
FCodes.MIF_SAVE_DICT MIF_SAVE_DICT
Value0x001000
FCodes.MIF_SAVE_VARS MIF_SAVE_VARS
Value0x002000
FCodes.MIF_SAVE_TABLECATS MIF_SAVE_TABLECATS
Value0x004000
FCodes.MIF_SAVE_TABLES MIF_SAVE_TABLES
Value0x008000
FCodes.MIF_SAVE_ECAT MIF_SAVE_ECAT
Value0x010000
FCodes.MIF_SAVE_ELEMENTS MIF_SAVE_ELEMENTS
Value0x020000
426
FCODES
CHAPTER 5 OBJECT REFERENCE
FCodes.MIF_SAVE_COLORCAT MIF_SAVE_COLORCAT
Value0x040000
FCodes.MIF_SAVE_VIEWSET MIF_SAVE_VIEWSET
Value0x080000
FCodes.MIF_SAVE_DATALINKS MIF_SAVE_DATALINKS
Value0x100000
FCodes.MIF_SAVE_FPLCAT MIF_SAVE_FPLCAT
Value0x200000
FCodes.MIF_SAVE_TEXTINSETS MIF_SAVE_TEXTINSETS
Value0x400000
FCodes.MIF_SAVE_RUBIS MIF_SAVE_RUBIS
Value0x800000
FCodes.MIF_SAVE_BANNERTEXT MIF_SAVE_BANNERTEXT
Value0x1000000
FCodes.KBD_OPEN_REPOSITORY KBD_OPEN_REPOSITORY
Value0x801
FCodes.KBD_CMS_CONNECTION_MGR KBD_CMS_CONNECTION_MGR
Value0x802
FCodes.KBD_NEW_XML KBD_NEW_XML
Value0x803
FCodes.KBD_CMS_UPLOAD_DOC_OR_B KBD_CMS_UPLOAD_DOC_OR_BOOK
OOK Value0x805
FCodes.KBD_REFRESH_DITAMAP_RMVIE KBD_REFRESH_DITAMAP_RMVIEW
W Value0x807
FCodes.STYLE_APPLY_CAT_TO_SEL STYLE_APPLY_CAT_TO_SEL
Value0x808
FCodes.KBD_SHOW_ELEM_CTX_AV KBD_SHOW_ELEM_CTX_AV
Value0x809
FCodes.FOCUS_INPUT_ELEM_CTX_AV FOCUS_INPUT_ELEM_CTX_AV
Value0x810
FCodes.KBD_CLOSE_ELEM_CTX_AV KBD_CLOSE_ELEM_CTX_AV
Value0x811
427
FILTERARGS
CHAPTER 5 OBJECT REFERENCE
FilterArgs
FilterArgs methods
FilterArgs.
Flow
428
FLOW
CHAPTER 5 OBJECT REFERENCE
Flow methods
Delete, GetProps, GetText, ObjectValid, SetProps.
429
FMTCHANGELIST
CHAPTER 5 OBJECT REFERENCE
FmtChangeList
430
FMTCHANGELIST
CHAPTER 5 OBJECT REFERENCE
431
FMTCHANGELIST
CHAPTER 5 OBJECT REFERENCE
432
FMTCHANGELIST
CHAPTER 5 OBJECT REFERENCE
433
FMTCHANGELIST
CHAPTER 5 OBJECT REFERENCE
435
FMTCHANGELIST
CHAPTER 5 OBJECT REFERENCE
436
FMTCHANGELIST
CHAPTER 5 OBJECT REFERENCE
437
FMTCHANGELIST
CHAPTER 5 OBJECT REFERENCE
FmtChangeList methods
Delete, GetProps, ObjectValid, SetProps.
438
FMTRULE
CHAPTER 5 OBJECT REFERENCE
FmtRule
FmtRule methods
Delete, GetProps, NewFmtRuleClauses, ObjectValid, SetProps.
439
FMTRULECLAUSE
CHAPTER 5 OBJECT REFERENCE
FmtRuleClause
440
FMTRULECLAUSE
CHAPTER 5 OBJECT REFERENCE
FmtRuleClause methods
Delete, GetProps, NewFmtChangeList, NewSubFmtRule, ObjectValid, SetProps.
441
FN
CHAPTER 5 OBJECT REFERENCE
Fn
442
FONT
CHAPTER 5 OBJECT REFERENCE
Fn methods
Delete, GetProps, GetText, ObjectValid, SetProps.
Font
Font methods
Font.
Fonts
An Array of Font objects with integer indexing and a length property.
Fonts methods
concat, pop, push.
Group
443
GROUP
CHAPTER 5 OBJECT REFERENCE
444
GROUP
CHAPTER 5 OBJECT REFERENCE
445
GROUP
CHAPTER 5 OBJECT REFERENCE
446
HIDDENPAGE
CHAPTER 5 OBJECT REFERENCE
Group methods
Delete, GetProps, ObjectValid, SetProps.
HiddenPage
447
GRAPHICSFMT
CHAPTER 5 OBJECT REFERENCE
HiddenPage methods
ApplyPageLayout, GetProps, ObjectValid, SetProps.
GraphicsFmt
448
INLINECOMPONENT
CHAPTER 5 OBJECT REFERENCE
InlineComponent
A component that can be placed inline within a Frammaker document. Currently FrameMaker supports
the mini-TOC inline component.
449
INSET METHODS
CHAPTER 5 OBJECT REFERENCE
InlineComponent methods
Delete, GetProps, ObjectValid, SetProps.
Inset methods
Delete, DeletePropByName, GetIntByName, GetMetricByName, GetProps, GetUBytesByName, Object-
Valid, SetIntByName, SetMetricByName, SetProps, SetUBytesByName.
IdValuePair
IdValuePair methods
IdValuePairs
An Array ofobjects with integer indexing and a length property.
450
INSET
CHAPTER 5 OBJECT REFERENCE
Inset
451
INSET
CHAPTER 5 OBJECT REFERENCE
452
INSET
CHAPTER 5 OBJECT REFERENCE
453
INSET
CHAPTER 5 OBJECT REFERENCE
454
INSET
CHAPTER 5 OBJECT REFERENCE
455
INSET
CHAPTER 5 OBJECT REFERENCE
456
INTS
CHAPTER 5 OBJECT REFERENCE
Inset methods
Delete, DeletePropByName, GetIntByName, GetMetricByName, GetProps, GetUBytesByName, Object-
Valid, SetIntByName, SetMetricByName, SetProps, SetUBytesByName.
Ints
An Array of objects with integer indexing and a length property.
Ints methods
concat, pop, push.
457
KEYCATALOG
CHAPTER 5 OBJECT REFERENCE
KeyCatalog
Line
458
LINE
CHAPTER 5 OBJECT REFERENCE
459
LINE
CHAPTER 5 OBJECT REFERENCE
460
LINE
CHAPTER 5 OBJECT REFERENCE
461
LINE
CHAPTER 5 OBJECT REFERENCE
Line methods
Delete, GetProps, ObjectValid, SetProps.
462
MARKER
CHAPTER 5 OBJECT REFERENCE
Marker
Marker methods
Delete, GetProps, ObjectValid, SetProps.
MarkerType
463
MASTERPAGE
CHAPTER 5 OBJECT REFERENCE
MarkerType methods
Delete, GetProps, ObjectValid, SetProps.
MasterPage
MasterPage methods
ApplyPageLayout, Delete, GetProps, ObjectValid, SetProps.
464
MATH
CHAPTER 5 OBJECT REFERENCE
Math
465
MATH
CHAPTER 5 OBJECT REFERENCE
466
MATH
CHAPTER 5 OBJECT REFERENCE
467
MATH
CHAPTER 5 OBJECT REFERENCE
468
MATH
CHAPTER 5 OBJECT REFERENCE
Math methods
Delete, GetProps, ObjectValid, SetProps.
469
MATHML
CHAPTER 5 OBJECT REFERENCE
MathML
470
MATHML
CHAPTER 5 OBJECT REFERENCE
471
MATHML
CHAPTER 5 OBJECT REFERENCE
472
MATHML
CHAPTER 5 OBJECT REFERENCE
473
MATHML
CHAPTER 5 OBJECT REFERENCE
MathML methods
Delete, GetProps, SetProps, ObjectValid.
474
MENU
CHAPTER 5 OBJECT REFERENCE
Menu
Menu methods
AddCommandToMenu, AddMenuToMenu, DefineAndAddCommand, DefineAndAddMenu, Delete,
Delete, GetProps, MenuItemInMenu, ObjectValid, SetProps.
475
MENUITEMSEPARATOR
CHAPTER 5 OBJECT REFERENCE
MenuItemSeparator
MenuItemSeparator methods
Delete, GetProps, ObjectValid, SetProps.
Metrics
An Array ofobjects with integer indexing and a length property.
Metrics methods
concat, pop, push.
476
PGF
CHAPTER 5 OBJECT REFERENCE
Pgf
477
PGF
CHAPTER 5 OBJECT REFERENCE
478
PGF
CHAPTER 5 OBJECT REFERENCE
479
PGF
CHAPTER 5 OBJECT REFERENCE
480
PGF
CHAPTER 5 OBJECT REFERENCE
481
PGF
CHAPTER 5 OBJECT REFERENCE
483
PGF
CHAPTER 5 OBJECT REFERENCE
484
PGF
CHAPTER 5 OBJECT REFERENCE
485
PGFFMT
CHAPTER 5 OBJECT REFERENCE
Pgf methods
Delete, GetProps, GetText, ObjectValid, SetProps.
PgfFmt
486
PGFFMT
CHAPTER 5 OBJECT REFERENCE
487
PGFFMT
CHAPTER 5 OBJECT REFERENCE
488
PGFFMT
CHAPTER 5 OBJECT REFERENCE
489
PGFFMT
CHAPTER 5 OBJECT REFERENCE
491
PGFFMT
CHAPTER 5 OBJECT REFERENCE
492
PGFFMT
CHAPTER 5 OBJECT REFERENCE
493
PGFFMT
CHAPTER 5 OBJECT REFERENCE
494
PGFFMT
CHAPTER 5 OBJECT REFERENCE
495
POINT
CHAPTER 5 OBJECT REFERENCE
PgfFmt methods
Delete, GetProps, ObjectValid, SetProps.
Point
x int X coordinate
y int Y cooridnate
Point methods
Point.
Points
An Array of Point objects with integer indexing and a length property.
Points methods
concat, pop, push.
Polygon
496
POLYGON
CHAPTER 5 OBJECT REFERENCE
497
POLYGON
CHAPTER 5 OBJECT REFERENCE
498
POLYGON
CHAPTER 5 OBJECT REFERENCE
499
POLYGON
CHAPTER 5 OBJECT REFERENCE
500
POLYLINE
CHAPTER 5 OBJECT REFERENCE
Polygon methods
Delete, GetProps, ObjectValid, SetProps.
Polyline
501
POLYLINE
CHAPTER 5 OBJECT REFERENCE
502
POLYLINE
CHAPTER 5 OBJECT REFERENCE
503
POLYLINE
CHAPTER 5 OBJECT REFERENCE
504
POLYLINE
CHAPTER 5 OBJECT REFERENCE
Polyline methods
Delete, GetProps, ObjectValid, SetProps.
505
PROPIDENT
CHAPTER 5 OBJECT REFERENCE
PropIdent
PropIdent methods
PropIdent.
PropVal
PropVal methods
PropVal.
PropVals
An Array of PropVal objects with integer indexing and a length property.
PropVals methods
concat, pop, push.
506
RECTANGLE
CHAPTER 5 OBJECT REFERENCE
Rectangle
507
RECTANGLE
CHAPTER 5 OBJECT REFERENCE
508
RECTANGLE
CHAPTER 5 OBJECT REFERENCE
509
RECTANGLE
CHAPTER 5 OBJECT REFERENCE
510
REFPAGE
CHAPTER 5 OBJECT REFERENCE
Rectangle methods
Delete, GetProps, ObjectValid, SetProps.
RefPage
RefPage methods
ApplyPageLayout, Delete, GetProps, ObjectValid, SetProps.
511
ROUNDRECT
CHAPTER 5 OBJECT REFERENCE
RoundRect
512
ROUNDRECT
CHAPTER 5 OBJECT REFERENCE
513
ROUNDRECT
CHAPTER 5 OBJECT REFERENCE
514
ROUNDRECT
CHAPTER 5 OBJECT REFERENCE
515
ROW
CHAPTER 5 OBJECT REFERENCE
RoundRect methods
Delete, GetProps, ObjectValid, SetProps.
Row
516
ROW
CHAPTER 5 OBJECT REFERENCE
517
RUBI
CHAPTER 5 OBJECT REFERENCE
Row methods
AddRows, Delete, GetProps, ObjectValid, SetProps.
Rubi
518
RULINGFMT
CHAPTER 5 OBJECT REFERENCE
Rubi methods
Delete, GetProps, GetText2, ObjectValid, SetProps.
RulingFmt
519
STRINGS
CHAPTER 5 OBJECT REFERENCE
RulingFmt methods
Delete, GetProps, ObjectValid, SetProps.
Strings
An Array of objects with integer indexing and a length property.
Strings methods
concat, pop, push.
SubCol
520
TAB
CHAPTER 5 OBJECT REFERENCE
SubCol methods
Delete, GetProps, GetText, ObjectValid, SetProps.
Tab
521
TABS
CHAPTER 5 OBJECT REFERENCE
Tab methods
Tab.
Tabs
An Array of Tab objects with integer indexing and a length property.
522
TBL
CHAPTER 5 OBJECT REFERENCE
Tabs methods
concat, pop, push.
Tbl
523
TBL
CHAPTER 5 OBJECT REFERENCE
524
TBL
CHAPTER 5 OBJECT REFERENCE
525
TBL
CHAPTER 5 OBJECT REFERENCE
526
TBL
CHAPTER 5 OBJECT REFERENCE
527
TBLFMT
CHAPTER 5 OBJECT REFERENCE
Tbl methods
AddCols, Delete, DeleteCols, DeleteRows, GetTableColumnByColNum, GetProps, MakeTblSelection,
ObjectValid, SetProps.
TblFmt
528
TBLFMT
CHAPTER 5 OBJECT REFERENCE
529
TBLFMT
CHAPTER 5 OBJECT REFERENCE
530
TBLFMT
CHAPTER 5 OBJECT REFERENCE
531
TBLFMT
CHAPTER 5 OBJECT REFERENCE
TblFmt methods
Delete, GetProps, ObjectValid, SetProps.
532
TEXTFRAME
CHAPTER 5 OBJECT REFERENCE
TextFrame
533
TEXTFRAME
CHAPTER 5 OBJECT REFERENCE
534
TEXTFRAME
CHAPTER 5 OBJECT REFERENCE
535
TEXTFRAME
CHAPTER 5 OBJECT REFERENCE
536
TEXTFRAME
CHAPTER 5 OBJECT REFERENCE
537
TEXTITEM
CHAPTER 5 OBJECT REFERENCE
TextFrame methods
Delete, GetProps, GetText, ObjectValid, SetProps.
TextItem
538
TEXTITEM
CHAPTER 5 OBJECT REFERENCE
FTI_TextObjId The object to which the offsets of all FO_Pgf, FO_Cell, FO_TextLine,
the text items are relative. FO_TiApiClient, FO_TiFlow, FO_TiText,
or FO_TiTextTable
FTI_String A string of characters with the same A character string
condition and character format.
FTI_LineBegin The beginning of a line. -
FTI_LineEnd The end of a line and the line end If the line end is a normal line end, the
type. value is 0;
if it is a forced line end, the
FTI_HardLineEnd flag is set;
if it is a hyphen line end, the
FTI_HyphenLineEnd flag is set
FTI_PgfBegin The beginning of a paragraph. FO_Pgf
FTI_PgfEnd The end of a paragraph. FO_Pgf
FTI_FlowBegin The beginning of a flow. FO_Flow
FTI_FlowEnd The end of a flow. FO_Flow
FTI_PageBegin The beginning of a page. FO_Page
FTI_PageEnd The end of a page. FO_Page
FTI_SubColBegin The beginning of a column. FO_SubCol
FTI_SubColEnd The end of a column. FO_SubCol
FTI_FrameAnchor An anchored frame. FO_AFrame
FTI_FnAnchor A footnote. FO_Fn
FTI_TblAnchor A table. FO_Tbl
FTI_MarkerAnchor A marker. FO_Marker
539
TEXTITEM
CHAPTER 5 OBJECT REFERENCE
The following table lists the flags for FTI_CharPropsChange. These flags indicate which properties
have changed.
Flags Meaning
540
TEXTITEM
CHAPTER 5 OBJECT REFERENCE
Flags Meaning
541
TEXTITEMS
CHAPTER 5 OBJECT REFERENCE
TextItems
An Array of TextItem objects with integer indexing and a length property.
TextItems methods
concat, pop, push.
TextLine
542
TEXTLINE
CHAPTER 5 OBJECT REFERENCE
544
TEXTLINE
CHAPTER 5 OBJECT REFERENCE
545
TEXTLINE
CHAPTER 5 OBJECT REFERENCE
546
TEXTLINE
CHAPTER 5 OBJECT REFERENCE
547
TEXTLOC
CHAPTER 5 OBJECT REFERENCE
TextLine methods
Delete, GetProps, GetText, ObjectValid, SetProps.
TextLoc
548
TEXTRANGE
CHAPTER 5 OBJECT REFERENCE
TextLoc methods
TextLoc.
TextRange
TextRange methods
TextRange.
TiApiClient
549
TIAPICLIENT
CHAPTER 5 OBJECT REFERENCE
TiApiClient methods
ConvertToText, Delete, DeletePropByName, DeleteTextInsetContents, GetProps, GetText, ObjectValid,
SetProps, UpdateTextInset.
550
TIFLOW
CHAPTER 5 OBJECT REFERENCE
TiFlow
551
TITEXT
CHAPTER 5 OBJECT REFERENCE
TiFlow methods
ConvertToText, Delete, DeletePropByName, DeleteTextInsetContents, GetProps, GetText, ObjectValid,
SetProps, UpdateTextInset.
TiText
552
TITEXT
CHAPTER 5 OBJECT REFERENCE
553
TITEXTTABLE
CHAPTER 5 OBJECT REFERENCE
TiText methods
ConvertToText, Delete, DeletePropByName, DeleteTextInsetContents, GetProps, GetText, ObjectValid,
SetProps, UpdateTextInset.
TiTextTable
554
TITEXTTABLE
CHAPTER 5 OBJECT REFERENCE
TiTextTable methods
ConvertToText, Delete, DeletePropByName, DeleteTextInsetContents, GetProps, GetText, ObjectValid,
SetProps, UpdateTextInset.
555
TYPEDVAL
CHAPTER 5 OBJECT REFERENCE
TypedVal
TypedVals
An Array of TypedVal objects with integer indexing and a length property.
556
UBYTES
CHAPTER 5 OBJECT REFERENCE
TypedVals methods
concat, pop, push.
UBytes
An Array ofobjects with integer indexing and a length property.
UBytes methods
concat, pop, push.
UInts
An Array ofobjects with integer indexing and a length property.
UInts methods
concat, pop, push.
UnanchoredFrame
557
UNANCHOREDFRAME
CHAPTER 5 OBJECT REFERENCE
558
UNANCHOREDFRAME
CHAPTER 5 OBJECT REFERENCE
559
UNANCHOREDFRAME
CHAPTER 5 OBJECT REFERENCE
560
UNANCHOREDFRAME
CHAPTER 5 OBJECT REFERENCE
561
VAR
CHAPTER 5 OBJECT REFERENCE
UnanchoredFrame methods
Delete, GetProps, ObjectValid, SetProps.
Var
562
VARFMT
CHAPTER 5 OBJECT REFERENCE
Var methods
Delete, GetProps, GetText, ObjectValid, SetProps.
VarFmt
563
VARFMT
CHAPTER 5 OBJECT REFERENCE
564
XREF
CHAPTER 5 OBJECT REFERENCE
VarFmt methods
Delete, GetProps, ObjectValid, SetProps.
XRef
565
XREF
CHAPTER 5 OBJECT REFERENCE
XRef methods
Delete, GetProps, GetText, ObjectValid, SetProps.
566
XREFFMT
CHAPTER 5 OBJECT REFERENCE
XRefFmt
XRefFmt methods
Delete, GetProps, ObjectValid, SetProps.
app
567
APP
CHAPTER 5 OBJECT REFERENCE
568
APP
CHAPTER 5 OBJECT REFERENCE
569
APP
CHAPTER 5 OBJECT REFERENCE
570
APP
CHAPTER 5 OBJECT REFERENCE
571
APP
CHAPTER 5 OBJECT REFERENCE
572
APP
CHAPTER 5 OBJECT REFERENCE
573
APP
CHAPTER 5 OBJECT REFERENCE
574
APP
CHAPTER 5 OBJECT REFERENCE
575
APP
CHAPTER 5 OBJECT REFERENCE
app methods
Close, GetNamedBook, GetNamedCommand, GetNamedMenu, GetNamedMenuItemSeparator,
GetNamedObject, GetProps, NewNamedBook, NewNamedCommand, NewNamedMenu, NewNamed-
MenuItemSeparator, NewNamedObject, ObjectValid, SetProps.
576
AFRAME
CHAPTER 6 FUNCTION SUMMARY
Function Summary
AFrame
Delete
Description
The Delete() method is used to delete an object from a document. When you delete an object that
contains another object, all child objects are also deleted with the parent object. For example, if you
delete a frame, all objects within the frame are also deleted.
The Delete() method does not take any arguments.
The method returns FE_SUCCESS on success, else returns one of the following values in FA_errno:
Error Reason
Returns
int
Syntax
Delete()
577
AFRAME
CHAPTER 6 FUNCTION SUMMARY
GetProps
Description
The GetProps() method retrieves the complete property list for a specified object.
The GetProps() method takes no arguments.
The method returns a PropVals object that contains an array of property-value pairs, on success.
If the GetProps() method fails, it sets the len field of the returned structure to 0 and assigns one of
the following values to FA_errno.
Error Reason
Returns
PropVals
Syntax
GetProps()
SetProps
Description
TheSetProps() method sets the properties of a specified object.
The method takes one argument - An array containing the values of the object to be set.
The method does not return anything on success.
On failure, the method returns one of the following values to FA_errno:
Error Reason
578
AFRAME
CHAPTER 6 FUNCTION SUMMARY
Error Reason
Constants.FE_BadNewGroup (-15) The method cannot move the specified object to this graphic
object group (FO_Group).
Constants.FE_BadNewSibling (-16) Object cannot be made a sibling of the specified object.
Constants.FE_BadObjId (-3) Invalid object.
Constants.FE_BadPropNum (-4) Specified property number is invalid.
Constants.FE_BadPropType (-5) Incorrect property type for this function.
Constants.FE_BadRange (-36) Specified text range is invalid.
Constants.FE_CantSmooth (-38) Object cannot be smoothed.
Constants.FE_DupName (-32) Property cannot be set to this name because it is already
used by another object.
Constants.FE_GenRuleAmbiguous General rule in structured document is ambiguous.
(-55)
Constants.FE_GenRuleConnectorExpe General rule in structured document is missing a connector.
cted (-57)
Constants.FE_GenRuleItemExpected General rule in structured document is missing a rule item.
(-51)
Constants.FE_GenRuleLeftBracketExp General rule in structured document is missing a left bracket.
ected (-53)
Constants.FE_GenRuleMixedConnect General rule in structured document has mixed connectors.
ors (-52)
Constants.FE_GenRuleRightBracketEx General rule in structured document is missing a right
pected (-54) bracket.
Constants.FE_GenRuleSyntaxError General rule in structured document has a syntax error.
(-56)
Constants.FE_GroupSelect (-9) The method cannot select or deselect an object in the
specified group.
Constants.FE_HiddenPage (-40) The specified value must be a hidden page (FO_HiddenPage).
Constants.FE_InvContextSpec () The method encountered an invalid context specification in a
FrameMaker document.
Constants.FE_NotBookComponent The specified value must be a book component
(-26) (FO_BookComponent).
Constants.FE_NotFrame (-12) The specified value must be a frame.
579
AFRAME
CHAPTER 6 FUNCTION SUMMARY
Error Reason
Constants.FE_NotGraphic (-11) The specified value must be a graphic object.
Constants.FE_NotGroup (-13) The specified value must be a graphic object group
(FO_Group).
Constants.FE_NotTextFrame (-39) The specified value must be a text column (FO_TextFrame).
Constants.FE_NotTextObject (-41) The specified object must be a text object, such as a
paragraph (FO_Pgf) or a flow (FO_Flow).
Constants.FE_OffsetNotFound (-21) Offset specified for the text location could not be found in
the specified paragraph or text line.
Constants.FE_OutOfRange (-7) Specified property value is out of the legal range for the
specified property.
Constants.FE_PageFrame (-37) The specified value must be a page frame object
(FO_UnanchoredFrame).
Constants.FE_ReadOnly (-6) Property is read-only.
Constants.FE_WithinFrame (-10) The specified object must first be moved to a different frame.
Constants.FE_WrongProduct (-60) The current FrameMaker version does not support this
operation.
Returns
Void
Syntax
SetProps(setVal)
Parameters
Data
Parameter name Type Optional Description
ObjectValid
Description
Indicates whether an object is valid or not.
580
ARC
CHAPTER 6 FUNCTION SUMMARY
Returns
int
Syntax
ObjectValid()
Arc
Delete
Description
Deletes the Arc object.
See Delete under the AFrame class for more information.
Returns
int
Syntax
Delete()
GetProps
Description
The GetProps() method retrieves the properties of the Arc object.
See SetProps under the AFrame class for more information.
Returns
PropVals
Syntax
GetProps()
581
ATTRCONDEXPR
CHAPTER 6 FUNCTION SUMMARY
SetProps
Description
The SetProps() method sets the properties of the Arc object.
See SetProps under the AFrame class for more information.
Returns
Void
Syntax
SetProps(setVal)
Parameters
Data
Parameter name Type Optional Description
ObjectValid
Description
Returns 1 if the Arc object is valid, else returns 0.
See ObjectValid under the AFrame class for more information.
Returns
int
Syntax
ObjectValid()
AttrCondExpr
ApplyAttributeExpression
Description
ApplyAttributeExpression() is the method to apply the attribute expression to the document.
582
ATTRCONDEXPR
CHAPTER 6 FUNCTION SUMMARY
Returns
int
Syntax
ApplyAttributeExpression()
GetProps
Description
The GetProps() method gets the properties of the specified attribute expression.
See GetProps under the AFrame class for more information.
Returns
PropVals
Syntax
GetProps()
SetProps
Description
The SetProps() method sets the properties of the specified attribute expression.
See SetProps under the AFrame class for more information.
Returns
Void
Syntax
SetProps(setVal)
Parameters
Data
Parameter name Type Optional Description
583
ATTRIBUTE
CHAPTER 6 FUNCTION SUMMARY
ObjectValid
Description
Returns 1 if the attribute expression is valid, else returns 0.
See ObjectValid under the AFrame class for more information.
Returns
int
Syntax
ObjectValid()
Attribute
Attribute
Description
Describes a single attribute.
Returns
Attribute
Syntax
Attribute(name, values, valflags, allow)
Parameters
Data
Parameter name Type Optional Description
584
ATTRIBUTEDEF
CHAPTER 6 FUNCTION SUMMARY
AttributeDef
AttributeDef
Description
Describes a single attribute function.
Returns
AttributeDef
Syntax
AttributeDef(name, required, flags, attrType, choices, defValues,
rangeMin, rangeMax)
Parameters
Data
Parameter name Type Optional Description
The flags parameter indicates whether the attribute is read-only, hidden or neither.
Flag Meaning
585
ATTRIBUTEDEFS
CHAPTER 6 FUNCTION SUMMARY
Flag Meaning
Value Meaning
AttributeDefs
An Array of AttributeDef objects with integer indexing and a length property.
concat
Description
The original array is unchanged. If an array is provided as a parameter to concat(), each of its elements
are appended as separate array elements at the end of the new array. Returns a new array, the result of
concatenation the given values to the end of the original array.
Returns
AttributeDefs
586
ATTRIBUTEDEFS
CHAPTER 6 FUNCTION SUMMARY
Syntax
concat(value)
Parameters
Data
Parameter name Type Optional Description
pop
Description
Removes the last element from the array.
Returns
AttributeDef
Syntax
pop()
push
Description
Returns the new length of the array.
Returns
number
Syntax
push(value)
Parameters
Data
Parameter name Type Optional Description
587
ATTRIBUTES
CHAPTER 6 FUNCTION SUMMARY
Attributes
An Array of Attribute objects with integer indexing and a length property.
concat
Description
The original array is unchanged. If an array is provided as a parameter to concat(), each of its elements
are appended as separate array elements at the end of the new array. Returns a new array, the result of
concatenation the given values to the end of the original array.
Returns
Attributes
Syntax
concat(value)
Parameters
Data
Parameter name Type Optional Description
pop
Description
Removes the last element from the array.
Returns
Attribute
Syntax
pop()
push
Description
Returns the new length of the array.
588
ATTRIBUTESEX
CHAPTER 6 FUNCTION SUMMARY
Returns
number
Syntax
push(value)
Parameters
Data
Parameter name Type Optional Description
AttributesEx
An Array of AttributeEx objects with integer indexing and a length property.
concat
Description
The original array is unchanged. If an array is provided as a parameter to concat(), each of its elements
are appended as separate array elements at the end of the new array. Returns a new array as the result
of concatenation, with the given values to the end of the original array.
Returns
AttributesEx
Syntax
concat(value)
Parameters
Data
Parameter name Type Optional Description
589
BODYPAGE
CHAPTER 6 FUNCTION SUMMARY
pop
Description
Removes the last element from the array.
Returns
AttributeEx
Syntax
pop()
push
Description
Returns the new length of the array.
Returns
number
Syntax
push(value)
Parameters
Data
Parameter name Type Optional Description
BodyPage
Delete
Description
Deletes the specified Body Page.
See Delete under the AFrame class for more information.
590
BODYPAGE
CHAPTER 6 FUNCTION SUMMARY
Returns
int
Syntax
Delete()
GetProps
Description
The GetProps() method retrieves the properties of the specified Body Page.
See GetProps under the AFrame class for more information.
Returns
PropVals
Syntax
GetProps()
SetProps
Description
The SetProps() method sets the properties of the specified Body Page.
See SetProps under the AFrame class for more information.
Returns
Void
Syntax
SetProps(setVal)
Parameters
Data
Parameter name Type Optional Description
591
BODYPAGE
CHAPTER 6 FUNCTION SUMMARY
ObjectValid
Description
Returns 1 if the Body Page is valid, else returns 0.
See ObjectValid under the AFrame class for more information.
Returns
int
Syntax
ObjectValid()
ApplyPageLayout
Description
The ApplyPageLayout() method applies the layout of one page to another page.
The method returns FE_Success on success, and sets FA_errno with one of the following values on
error:
Error Reason
Returns
int
Syntax
ApplyPageLayout(srcPage)
592
BOOK
CHAPTER 6 FUNCTION SUMMARY
Parameters
Data
Parameter name Type Optional Description
Book
Compare
Description
The Compare() method compares the differences between two versions of files and stores the result
in a CompareRet data object.
You can OR the following values into the flags parameter:
Flag Meaning
The returned CompareRet object contains the pointers to the summary and composite results docu-
ments.
The method returns the comparison results in the CompareRet object on success. On failure, the
method assigns one of the following values to FA_errno:
Error Reason
593
BOOK
CHAPTER 6 FUNCTION SUMMARY
Error Reason
Constants.FE_BadCompare Older and newer documents are not the same types of files.
(-35)
Constants.FE_CompareTypes One of the files is not a FrameMaker document or book or one file
(-34) is a book and the other is a document.
Constants.FE_WrongProduct Current FrameMaker version does not support the operation.
(-60)
Returns
CompareRet
Syntax
Compare(newerDoc, flags, insertCondTag, deleteCondTag, replaceText,
compareThreshold)
Parameters
Data
Parameter name Type Optional Description
594
BOOK
CHAPTER 6 FUNCTION SUMMARY
Data
Parameter name Type Optional Description
NewBookComponentInHierarchy
Description
The NewBookComponentInHierarchy() method inserts a book component at a specified position
in a FrameMaker structured book, and returns the component that was newly added, on success.
The method returns the element that was added, on success. On failure, the method assigns one of the
following values to FA_errno:
Error Reason
Returns
Element
Syntax
NewBookComponentInHierarchy(compName, elemLoc)
595
BOOK
CHAPTER 6 FUNCTION SUMMARY
Parameters
Data
Parameter name Type Optional Description
SilentPrintDoc
Description
The SilentPrintDoc() method prints a document or a book using the default print settings. Default
print settings are the settings that appear in the Print dialog box when the user attempts to print a docu-
ment.
SilentPrintDoc() initializes the print page size and printer name if they do not have values.
On success, the method returns FE_Success. On failure, the method sets FA_errno to one of the
following values:
Error Reason
Returns
int
Syntax
SilentPrintDoc()
SimpleGenerate
Description
The SimpleGenerate() method generates files for a book.
The method performs the same operation as choosing Update Book from the book Edit menu.
You must set up the book and its generated files before calling SimpleGenerate().
596
BOOK
CHAPTER 6 FUNCTION SUMMARY
The method returnsFE_Success on success, and assigns FA_errno with one of the following values
on failure:
Error Reason
Constants.FE_BadOperatio The book is not self-consistent (book generates data in one file that is
n (-27) source data for another generated file, or page count continually
changes for this operation); there is a duplicate file in the book; all files
in the book are generated files.
Constants.FE_BadParamete Not a valid book.
r (-43)
Constants.FE_SystemError Could not allocate memory, or could not open or save one of the files in
(-42) the book.
Returns
int
Syntax
SimpleGenerate(interactive, makeVisible)
Parameters
Data
Parameter name Type Optional Description
SimpleImportFormats
Description
The SimpleImportFormats() method imports formats from a document to a document or a book.
NOTE: If you import formats to a book, SimpleImportFormats() imports formats to each book
component for which the ImportFmtInclude property is set to True.
You can OR the following values into the formatFlags parameter to specify the formats to import.
597
BOOK
CHAPTER 6 FUNCTION SUMMARY
The method returns FE_Success on success. If the method fails, it sets FA_errno with one of the
following values:
Error Reason
598
BOOK
CHAPTER 6 FUNCTION SUMMARY
Returns
int
Syntax
SimpleImportFormats(fromDoc, formatFlags)
Parameters
Data
Parameter name Type Optional Description
SimpleImportElementDefs
Description
The SimpleImportElementDefs()method imports element definitions and the format change list
catalog from an EDD or FrameMaker document or book to another FrameMaker document or book.
You can OR the following flags into the importFlags parameter:
Flag Meaning
The method returns FE_Success on success. If the method fails, it assigns one of the following values
to FA_errno:
599
BOOK
CHAPTER 6 FUNCTION SUMMARY
Error Reason
Returns
int
Syntax
SimpleImportElementDefs(fromDocOrBook, importFlags)
Parameters
Data
Parameter name Type Optional Description
GetUniqueObject
Description
The GetUniqueObject() method retrieves the object from its persistent unique identifier (UID). The
FrameMaker product assigns a UID to each object in a document or book that is not identified by a name.
The UID, unlike the object's ID, does not change from one session to another.
The GetUniqueObject() method returns the object on success. On failure, it sets FA_errno to one of the
following values:
Error Reason
600
BOOK
CHAPTER 6 FUNCTION SUMMARY
Error Reason
Returns
Object
Syntax
GetUniqueObject(objType, unique)
Parameters
Data
Parameter name Type Optional Description
Close
Description
Closes a document, book, dialog box, or Frame session.
The flags parameter specifies whether to abort or to close open documents or books if they have
unsaved changes. Set theConstants.FF_CLOSE_MODIFIED flag to True (1) to close open docu-
ments and books regardless of their state.
The method sets FE_Success on success. On failure, the method assigns the following value to
FA_errno:
Error Reason
Constants.FE_DocModi The document was modified and the flags parameter was set to 0.
fied (-8)
Returns
int
Syntax
Close(flags)
601
BOOK
CHAPTER 6 FUNCTION SUMMARY
Parameters
Data
Parameter name Type Optional Description
SimpleSave
Description
The SimpleSave() method saves a book.
If you set theinteractive parameter to False and you specify the book's current name for
saveAsName, FrameMaker saves the book under its current name.
If you specify another filename for saveAsName, FrameMaker saves the book to that filename.
If you specify an empty string (""), FrameMaker does not save the file. Instead it sets FA_errno to
Constants.FE_BadParameter (-43).
If you set the interactive parameter to True, FrameMaker displays the Save dialog box and allows
the user to choose a filename. The book's current name appears as the default file name.
The SimpleSave() method returns the book it saved, on success.
On failure, the method sets FA_errno, to one of the following values:
602
BOOK
CHAPTER 6 FUNCTION SUMMARY
Error Reason
Returns
Book
Syntax
SimpleSave(saveAsName, interactive)
603
BOOK
CHAPTER 6 FUNCTION SUMMARY
Parameters
Data
Parameter name Type Optional Description
NewSeriesObject
Description
The NewSeriesObject() method creates a series object. Series objects include the following object
types:
• BodyPage
• BookComponent
• Pgf
The method allows you to specify the position in the series at which to add the new object.
The method returns the location of the new object, on success. If the method fails, it sets FA_errno to
one of the following values:
Error Reason
Returns
Object
604
BOOK
CHAPTER 6 FUNCTION SUMMARY
Syntax
NewSeriesObject(objType, previous)
Parameters
Data
Parameter name Type Optional Description
NewSeriesBookComponent
Description
The NewSeriesBookComponent() method creates a Book Component.
The method allows you to specify the position in the series at which to add the new object.
See the NewSeriesObject method for more information.
Returns
BookComponent
Syntax
NewSeriesBookComponent(previous)
Parameters
Data
Parameter name Type Optional Description
605
BOOK
CHAPTER 6 FUNCTION SUMMARY
NewBookComponentOfTypeInHierarchy
Description
Inserts a book component of a specified type at a specified position in a structured FrameMaker book.
Returns
BookComponent
Syntax
NewBookComponentOfTypeInHierarchy(compName, compType, elemLoc)
Parameters
Data
Parameter name Type Optional Description
NOTE: The book you specify for bookId must already be structured.
GetConditionalSettings
Description
Get a PropVals object containing the conditional settings of the current book.
Returns
PropVals
Syntax
GetConditionalSettings()
ApplyConditionalSettings
Description
Apply conditional settings in the selected book based on the specified settings.
606
BOOK
CHAPTER 6 FUNCTION SUMMARY
Returns
Void
Syntax
ApplyConditionalSettings(settings)
Parameters
Data
Parameter name Type Optional Description
Property Meaning
Constants.FS_ShowState (1) Specify the show state of the conditional text applied to the
book.
• Constants.FV_ShowAll (1)
Constants.FV_ShowAsPerConditions (2)
Constants.FV_ShowAsPerExpression (3)
Constants.FS_ShowConditions (2) A string array of the names of the condition tags to be added
to the Show list in the Show/Hide Conditional Text dialog
Constants.FS_HideConditions (3) A string array of the names of the condition tags to be added
to the Hide list in the Show/Hide Conditional Text dialog
Constants.FS_ActiveConditionalExpr The conditional build expression tag to be applied.
ession (6) • When reading this property: Returns the currently
applied Conditional Build Expression tag, if (FS_Show-
State = FV_ShowAsPerExpression). Else NULL is
returned.
When applying this property: Applies the current active
Conditional Build expression if (FS_ShowState = FV_-
ShowAsPerExpression). Otherwise ignored.
Constants.FS_ShowConditionIndicat Show / hide the conditional indicators.
ors (7)
Constants.FS_ApplyConditionalSetti Apply the conditions to view-only documents in the book.
ngsToViewOnlyDoc (8)
607
BOOK
CHAPTER 6 FUNCTION SUMMARY
Property Meaning
Constants.FS_ApplyConditionalSetti Apply the conditions to nested books within the current book.
ngsToNestedBooks (9)
Constants.FS_ApplyConditionalSetti Show erros in the book error log.
ngsShowBookErrorLog (10)
The method returns FE_Success if it succeeds. On failure, the method returns one of the following values
to FA_errno:
Error Reason
Constants.FE_ExpressionNotF Expression Tag to be applied does not exist in the default document
ound of the book.
Constants.FE_FailedToApplyO Failed to apply conditional settings on one or more book
nOneOrMoreComponents components.
ManageConditionalExpressions
Description
Add, edit, or delete conditional expression tags to the current book. Applies to the options available in
the Add/Edit Conditional Tag dialog.
Returns
Void
Syntax
ManageConditionalExpressions(settings)
Parameters
Data
Parameter name Type Optional Description
608
BOOK
CHAPTER 6 FUNCTION SUMMARY
Property Meaning
The method returns FE_Success if it succeeds. On failure, the method returns one of the following values
to FA_errno:
Error Reason
GetConditionalExpression
Description
Returns the conditional expression definition for the given named expression.
Returns
exprName
Syntax
GetConditionalExpression(exprName)
Parameters
Data
Parameter name Type Optional Description
609
BOOK
CHAPTER 6 FUNCTION SUMMARY
Save
Description
The Save() method saves a book. The method allows you to script the way FrameMaker saves the file
and to specify responses to warnings and messages that arise while the file is being saved.
You can save a file under its current name or save it as a new file.
The property list for the saveParams parameter is as follows:
Property Meaning
Constants.FS_SavedFileName A string that specifies the full path of the saved file.
(1)
Constants.FS_SaveNativeErro The error condition. If the file is saved successfully, this property is
r (2) set to FE_Success.
Constants.FS_SaveStatus (3) A bit field indicating what happened when the file was saved.
610
BOOK
CHAPTER 6 FUNCTION SUMMARY
Error Reason
Returns
Object
Syntax
Save(saveAsName, saveParams, saveReturnParams)
611
BOOK
CHAPTER 6 FUNCTION SUMMARY
Parameters
Data
Parameter name Type Optional Description
UpdateBook
Description
The UpdateBook() method updates a book.
The method allows you to specify a script (property list) specifying how to update the book and how to
deal with error and warning conditions.
For example, you can specify whether to abort or to continue updating a book if it contains view-only
documents.
NOTE: Always initialize the pointer to the property list that you specify for updateReturnParamspp to
null before you call UpdateBook().
To get a property list to specify for the updateParamsp parameter, use
GetUpdateBookDefaultParams() or create the list from scratch.
The following are the properties that you can use in the property list:
Property Meaning
Constants.FS_AlertUserAboutFailure Alert user with warnings and messages if necessary. Set this
(2) parameter to True or False as desired.
• True - Notify user when unexpected conditions occur.
False - Do not notify user when unexpected conditions oc-
cur.
612
BOOK
CHAPTER 6 FUNCTION SUMMARY
Property Meaning
613
BOOK
CHAPTER 6 FUNCTION SUMMARY
Property Meaning
Constants.FS_ShowBookErrorLog (4) Display the book error log for this update operation. Takes the
value True or False.
• False - Do not display the error log; all warnings and
errors are redirected to the console.
True - Display the error log.
Constants.FS_UpdateBookGenerated Update generated files such as TOC, lists, and indexes. Only
Files (7) update those generated files that have GenerateInclude set to
True in their associated FO_BookComponent objects. Takes
the value True or False.
• True - Update generated files.
False - Do not update generated files.
Constants.FS_UpdateBookMasterPa Update automatic assignment of master pages in all the
ges (12) documents of the book. Takes the value True or False.
• True - Update master pages.
False - Do not update master pages.
Constants.FS_UpdateBookNumberin Update numbering in all the documents of the book. Takes the
g (8) value True or False.
• True - Update numbering.
False - Do not update numbering.
Constants.FS_UpdateBookOleLinks Update OLE links in all the documents of the book. Takes the
(9) value True or False.
• True - Update OLE links.
False - Do not update OLE links.
Constants.FS_UpdateBookTextRefere Update text insets in all the documents of the book. Takes the
nces (10) value True or False.
• True - Update text insets.
False - Do not update text insets.
Constants.FS_UpdateBookXRefs (11) Update cross-references in all the documents of the book.
Takes the value True or False.
• True - Update cross-references.
False - Do not update cross-references.
The property list to which updateReturnParams is set, has the following property:
614
BOOK
CHAPTER 6 FUNCTION SUMMARY
Property Meaning
Error Reason
615
BOOK
CHAPTER 6 FUNCTION SUMMARY
Error Reason
Constants.FE_SystemError • Constants.FV_FileInBookNotOpened (96) - One or more files in the
(-42) book could not be opened.
Constants.FV_FileInBookNotSaved (97) - One or more files in the
book could not be saved.
Constants.FV_TooManyWindowsUpdateBook (98) - Not enough
memory. Too many windows were open.
Returns
int
Syntax
UpdateBook(updateParams, updateReturnParams)
Parameters
Data
Parameter name Type Optional Description
Import
Description
The Import() method imports text or graphics into a document.
Import() allows you to specify a script (property list) specifying how to import text or graphics and how
to deal with error and warning conditions.
For example, you can specify whether to import a file by reference or by copy.
If you import a file by reference, Import() creates an inset. The following list summarizes the types of
files you can import with Import() and the types of inset objects it creates when you import them by
reference:
• Graphics - FO_Inset
616
BOOK
CHAPTER 6 FUNCTION SUMMARY
Property Meaning
617
BOOK
CHAPTER 6 FUNCTION SUMMARY
Property Meaning
Constants.FS_DisallowPlainText Disallow importing Text Only files. Set to either True or False.
(12) • True - Do not allow importing Text Only files.
False - Allow importing Text Only files.
Constants.FS_DisallowSgml (33) Disallow importing SGML documents. Set to either True or False.
• True - Do not allow importing SGML documents.
False - Allow importing SGML documents.
Constants.FS_DisallowXml (43) Disallow importing XML documents. Set to either True or False.
• True - Do not allow importing XML documents.
False - Allow importing XML documents.
Constants.FS_DontNotifyAPIClien Notify other clients of the import operation. Set to either True or
ts (3) False.
• True - Do not notify other clients of the import operation.
False - Notify other clients of the import operation.
Constants.FS_FileTypeHint (34) If the file is filterable, this property is a string that enables
FrameMaker to automatically call the correct filter to filter the
file.
If the file is not filterable, this property contains the value null.
Constants.FS_FileIsSgmlDoc (32) File is an SGML document. The possible values are:
• Constants.FV_DoOK (1) - Import it anyway.
Constants.FV_DoCancel (0) - Cancel the import operation.
Constants.FV_DoShowDialog (4) - Show a dialog box and let
the user decide.
Constants.FS_FileIsXmlDoc (37) File is an XML document. The possible values are:
• Constants.FV_DoOK (1) - Import it anyway.
Constants.FV_DoCancel (0) - Cancel the import operation.
Constants.FV_DoShowDialog (4) - Show a dialog box and let
the user decide.
Constants.FS_ForceImportAsText Import the file as a Text Only document, even if it is a MIF file or a
(17) filterable file. Set to either True or False.
• True - Import it as a Text Only file.
False - Import it in a format based on its type.
618
BOOK
CHAPTER 6 FUNCTION SUMMARY
Property Meaning
Constants.FS_HowToImport (4) Import file by reference or copy. The possible values are:
• Constants.FV_DoByRef (5) - Import file by reference.
Constants.FV_DoByCopy (6) - Import file by copy.
Constants.FV_DoUserChoice (7) - Allow user to choose how
to import the file.
Constants.FS_ImportAsType (36) Specify the format of the file to import. Possible values are:
• Constants.FV_AUTORECOGNIZE (0x00) - Default value;
recognize the file type aoutmatically.
Constants.FV_TYPE_BINARY (0x01) - A FrameMaker binary
file.
Constants.FV_TYPE_MIF (0x02) - A MIF file.
Constants.FV_TYPE_TEXT (0x03) - A file containing plain
text.
Constants.FV_TYPE_SGML (0x04) - An SGML file.
Constants.FV_TYPE_XML (0x05) - An XML file.
Constants.FV_TYPE_FILTER (0xFF) - Use a filter to import this
file. You must specify a valid file type hint for the Con-
stants.FS_FileTypeHint (34) property.
Constants.FS_ManualUpdate (5) Update inset manually. Set to either True or False.
• True - Update inset automatically.
False - Do not update inset manually.
Constants.FS_SgmlImportApplica Retained for compatibility with older versions of FrameMaker.
tion (35) Use the Constants.FS_StructuredImportApplication (35) property
instead.
Constants.FS_StructuredImportA String specifying the name of the structure application to use
pplication (35) when importing an XML or SGML file. This property takes
precedence over any other structure application specification. If
the specified application does not exist, the calling function will
fail.
If this property is not set, then the value of this property is null.
Constants.FS_ShowBrowser (1) Display the Import dialog box. Set to either True or False.
• True - Display the Import dialog box.
False - Do not display the Import dialog box.
Constants.FS_TextInsetName (6) Denotes the Inset name. If not set, the value of this property is
null.
619
BOOK
CHAPTER 6 FUNCTION SUMMARY
Code Meaning
format_id is a code specifying the format that the filter translates. The code is a string of four charac-
ters. The following are the possible codes:
Code Meaning
CDR CorelDRAW
CGM Computer Graphics Metafile
DIB Device-independent bitmap (Windows)
DRW Micrografx CAD
DXF Autodesk Drawing eXchange file (CAD files)
EMF Enhanced Metafile (Windows)
EPSB Encapsulated PostScript Binary (Windows)
EPSD Encapsulated PostScript with Desktop Control Separations (DCS)
EPSF Encapsulated PostScript (Macintosh)
EPSI Encapsulated PostScript Interchange
620
BOOK
CHAPTER 6 FUNCTION SUMMARY
Code Meaning
FRMI FrameImage
FRMV FrameVector
G4IM CCITT Group 4 to Image
GEM GEM file (Windows)
GIF Graphics Interchange Format (Compuserve)
HPGL Hewlett-Packard Graphics Language
IGES Initial Graphics Exchange Specification (CAD files)
IMG4 Image to CCITT Group 4 (UNIX)
MooV QuickTime Movie
OLE Object Linking and Embedding Client (Microsoft)
PCX PC Paintbrush
PICT QuickDraw PICT
PNTG MacPaint
SNRF Sun Raster File
SRGB SGI RGB
SVGI Scalable Vector Graphics
TIFF Tag Image File Format
WMF Windows Metafile
WPG WordPerfect Graphics
XWD X Windows System Window Dump file
platform is a code specifying the platform on which the filter was run. The code is a string of four char-
acters. The following are the possible codes:
Code Meaning
621
BOOK
CHAPTER 6 FUNCTION SUMMARY
Code Meaning
WIN4 Windows 95
OS/2 IBM OS/2
UNIX Generic X/11 (Sun, HP)
filter_vers is a string of four characters identifying the version of the filter on that platform. For
example, version 1.0 of a filter is represented by the string 1.0.
filter_name is a text string (up to 31 characters long) that describes the filter.
Import() uses the following properties only for importing FrameMaker documents and MIF
files:
Property Meaning
622
BOOK
CHAPTER 6 FUNCTION SUMMARY
Property Meaning
Import() uses the following properties only for importing graphics files:
Property Meaning
623
BOOK
CHAPTER 6 FUNCTION SUMMARY
Property Meaning
Constants.FS_RasterImageHeig Specifies the height of the rectangle in which to import the graphic,
ht (40) when importing SVG data.
NOTE: You should always specify this value in points. This property
corresponds to the height for the Fit in Selected Rectangle setting in
the Imported Graphic Scaling dialog box.
Constants.FS_RasterImageWidt Specifies the width of the rectangle in which to import the graphic,
h (39) when importing SVG data.
NOTE: You should always specify this value in points. This property
corresponds to the width for the Fit in Selected Rectangle setting in
the Imported Graphic Scaling dialog box.
Constants.FS_ShowRasterDpiDi For importing SVG data, show the Imported Graphic Scaling dialog
alog (41) box. Default is 1 (one). The values are:
• 1 (one) or any non-zero value: Display the Imported Graphic
Scaling dialog box.
0 (zero): Do not display the Imported Graphic Scaling dialog
box.
Import() uses the following properties only for importing ASCII text files:
Property Meaning
624
BOOK
CHAPTER 6 FUNCTION SUMMARY
Property Meaning
Constants.FS_LeaveHeadingRows Leave the heading rows empty if Constants.FS_FileIsText (16) is
Empty (27) set to Constants.FV_DoImportAsTable (8).
Constants.FS_LeaveHeadingRowsEmpty (27) is set to either True
or False.
• True - Leave heading rows empty.
False - Do not leave heading rows empty.
Constants.FS_NumCellSeparators Denotes the number of spaces to use as a separator, if
(30) Constants.FS_FileIsText (16) is set to
Constants.FV_DoImportAsTable (8), and
Constants.FS_CellSeparator (29) is set to a space (' '). The default
value is 1.
Constants.FS_NumColumns (31) Specifies the number of columns in the table, if
Constants.FS_FileIsText (16) is set to
Constants.FV_DoImportAsTable (8), and
Constants.FS_TreatParaAsRow (28) is False. The default value is 1.
Constants.FS_TblNumHeadingRo Specifies the number of heading rows in the table, if
ws (26) Constants.FS_FileIsText (16) is set to
Constants.FV_DoImportAsTable (8). The default value is 1.
Constants.FS_TreatParaAsRow Convert each line in the text file into a row of table cells and use
(28) Constants.FS_CellSeparator (29) and
Constants.FS_NumCellSeparators (30) to determine how to
divide the line into separate cells, if Constants.FS_FileIsText (16)
is set to Constants.FV_DoImportAsTable (8).
Constants.FS_TreatParaAsRow (28) is set to either True or False.
• True - Convert each line into a row of table cells.
False - Convert each line into a table cell instead.
When you import text into a table, in addition to setting Constants.FS_FileIsText (16) to
Constants.FV_DoImportAsTable (8), you must specify a value for the
Constants.FS_ImportTblTag (25) property. If you set the
Constants.FS_TreatParaAsRow (28) property to True, you must also specify a value for the
Constants.FS_CellSeparator (29) property.
The property list returned by GetImportDefaultParams() does not specify values for the
Constants.FS_ImportTblTag (25) and Constants.FS_CellSeparator (29) properties.
If you use the property list to import a table and do not specify a value for
Constants.FS_ImportTblTag (25), Import() fails and sets FA_errno to
Constants.FE_BadParameter (-43).
625
BOOK
CHAPTER 6 FUNCTION SUMMARY
If you set Constants.FS_TreatParaAsRow (28) to True and do not specify a cell separator by
setting Constants.FS_CellSeparator (29), Import() fails and sets FA_errno to
Constants.FE_BadParameter (-43).
If GetImportDefaultParams() fails, the Import() method sets the len field of the returned
PropVals structure to 0.
The Import() method returns the object that was imported, on success.
NOTE: Import() returns 0 on success, if it imports a copy or a graphic inset.
Error Reason
Property Meaning
626
BOOK
CHAPTER 6 FUNCTION SUMMARY
Property Meaning
Constants.FS_ImportStatus (3) A bit field indicating what happened when the file was imported.
See the following table for more information.
Both the Constants.FS_ImportNativeError (2) property and the FA_errno global variable
indicate the result of a call to the Import() method. The following table lists the possible status flags
and the reasons associated with them:
627
BOOK
CHAPTER 6 FUNCTION SUMMARY
628
BOOK
CHAPTER 6 FUNCTION SUMMARY
Returns
Object
629
BOOK
CHAPTER 6 FUNCTION SUMMARY
Syntax
Import(textLocP, filename, importParams, importReturnParams)
Parameters
Data
Parameter name Type Optional Description
GetProps
Description
Retrieves the properties of the specified Book.
See GetProps under the AFrame class for more information.
Returns
PropVals
Syntax
GetProps()
SetProps
Description
Sets the value of the specified property of the Book.
See SetProps under the AFrame class for more information.
Returns
Void
630
BOOKCOMPONENT
CHAPTER 6 FUNCTION SUMMARY
Syntax
SetProps(setVal)
Parameters
Data
Parameter name Type Optional Description
ObjectValid
Description
Indicates whether the specified book is valid. Returns 1 if the specified book is valid, else returns 0.
See ObjectValid under the AFrame class for more information.
Returns
int
Syntax
ObjectValid()
BookComponent
Delete
Description
Deletes the specified BookComponent object.
See Delete under the AFrame class for more information.
Returns
int
Syntax
Delete()
631
BOOKCOMPONENT
CHAPTER 6 FUNCTION SUMMARY
MoveComponent
Description
Moves a particular book component up and down in the book components sequence. In addition , you
can promote and demote operations of a component in a hierarchy using this method.
Returns
Void
Syntax
MoveComponent(moveAction)
Parameters
Data
Parameter name Type Optional Description
GetProps
Description
Retrieves the properties of the specified BookComponent object.
See GetProps under the AFrame class for more information.
Returns
PropVals
Syntax
GetProps()
SetProps
Description
Sets the property of the BookComponent object.
See SetProps under the AFrame class for more information.
Returns
Void
632
CELL
CHAPTER 6 FUNCTION SUMMARY
Syntax
SetProps(setVal)
Parameters
Data
Parameter name Type Optional Description
ObjectValid
Description
Indicates whether a BookComponent object is valid. Returns 1 if the specified book component is valid,
else returns 0.
See ObjectValid under the AFrame class for more information.
Returns
int
Syntax
ObjectValid()
Cell
StraddleCells
Description
The StraddleCells() method straddles the specified cells in a table.
The cells you straddle must all be from the same type of row. You cannot straddle a set of cells that are
in both heading and body rows or footing and body rows. Also, the cells you straddle must be unstrad-
dled. You cannot use this function to further straddle cells that are already straddled.
The StraddleCells() method returns FE_Success on success.
The method assigns one of the following values toFA_errno, on failure:
633
CELL
CHAPTER 6 FUNCTION SUMMARY
Error Reason
Returns
int
Syntax
StraddleCells(heightInRows, widthInCols)
Parameters
Data
Parameter name Type Optional Description
UnStraddleCells
Description
The UnStraddleCells() method unstraddles the specified cells in a table.
The UnStraddleCells() method returns FE_Success on success.The method assigns one of the following
values to FA_errno, on failure:
634
CELL
CHAPTER 6 FUNCTION SUMMARY
Error Reason
Returns
int
Syntax
UnStraddleCells(heightInRows, widthInCols)
Parameters
Data
Parameter name Type Optional Description
GetText
Description
The GetText() method gets the text from the following types of objects:
• Cell
• Element
• Flow
• Fn
• Pgf
• SubCol
635
CELL
CHAPTER 6 FUNCTION SUMMARY
• TextFrame
• TextLine
• TiApiClient
• TiFlow
• TiText
• TiTextTable
• XRef
Call this method on the document as follows:
document.GetText(flags)
GetText() returns an object containing an array of text items. Each text item contains either a string
of text, an object that appears within the text (such as a table or an anchored frame), an indicator that
the text properties have changed, or the object that organizes the text (such as a paragraph or a text
column).
NOTE: Use the DeallocateTextItems() method to deallocate the memory used by the TextItems
structure returned by GetText() when you have finished using it.
To get specific types of text items, OR the constants that represent them (for example, use a bitwise OR
to combine FTI_FlowBegin and FTI_String) into flags. To get all types of text items, specify -1.
The method returns a TextItems object containing the array of text items of the requested text types.
TextItem.dataType can be one of the following constants:
636
CELL
CHAPTER 6 FUNCTION SUMMARY
637
CELL
CHAPTER 6 FUNCTION SUMMARY
The following table lists the bit flags that a client can bitwise AND with the idata field of a
Constants.FTI_CharPropsChange (0x00200000) text item. For example, to determine if the
font family changed, bitwise AND the Constants.FTF_FAMILY (0x80000000) flag with the idata
field.
Flags Meaning
638
CELL
CHAPTER 6 FUNCTION SUMMARY
Flags Meaning
FTF_SPREAD The font spread has changed.
FTF_STRETCH The font stretch value has changed.
FTF_STRIKETHROUGH The strikethrough characteristic has changed.
FTF_TSUME The Tsume setting has changed.
FTF_UNDERLINING The underlining has changed.
FTF_VARIATION The font variation has changed.
FTF_WEIGHT The font weight has changed.
On success, the method returns a TextItems structure containing the array of text items of the
requested types.
On failure, the method sets the len field of the returned TextItems structure to 0, and returns one of
the following values toFA_errno:
Error Reason
If you call GetText() for an object (FO_Element object), the returned information depends on the type
of element, as shown:
Constants.FV_FO_CONTAINE All the text items from the beginning to the end of the element.
R (1)
Constants.FV_FO_SYS_VAR All the text items from the beginning to the end of the variable.
(2)
Constants.FV_FO_XREF (3) All the text items from the beginning to the end of the cross reference.
Constants.FV_FO_FOOTNOT All the text items from the beginning to the end of the footnote.
E (5)
Constants.FV_FO_TBL_TITLE All the text items from the beginning to the end of the table title.
(9)
639
CELL
CHAPTER 6 FUNCTION SUMMARY
Constants.FV_FO_TBL_CELL All the text items from the beginning to the end of the cell.
(14)
Constants.FV_FO_TBL_HEA Nothing. GetText() failed.
DING (10)
Constants.FV_FO_TBL_BOD
Y (11)
Constants.FV_FO_TBL_FOOT
ING (12)
Constants.FV_FO_MARKER
(4)
Constants.FV_FO_TBL (8)
Constants.FV_FO_GRAPHIC
(6)
Constants.FV_FO_EQN (7)
Constants.FV_FO_TBL_ROW
(13)
Returns
TextItems
Syntax
GetText(flags)
Parameters
Data
Parameter name Type Optional Description
flags int No Denotes the various bit flags that specify the
items to be retrieved.
GetProps
Description
Retrieves the properties of the specified cell object.
See GetProps under the AFrame class for more information.
640
CELL
CHAPTER 6 FUNCTION SUMMARY
Returns
PropVals
Syntax
GetProps()
SetProps
Description
Sets the desired property of the cell object.
See SetProps under the AFrame class for more information.
Returns
Void
Syntax
SetProps(setVal)
Parameters
Data
Parameter name Type Optional Description
ObjectValid
Description
Indicates whether a cell object is valid. Returns 1 if the cell object is valid, else returns 0.
See ObjectValid under the AFrame class for more information.
Returns
int
Syntax
ObjectValid()
641
CHARFMT
CHAPTER 6 FUNCTION SUMMARY
CharFmt
Delete
Description
Deletes the specified CharFmt object.
See Delete under the AFrame class for more information.
Returns
int
Syntax
Delete()
GetProps
Description
Get the properties of the specified CharFmt object.
See GetProps under the AFrame class for more information.
Returns
PropVals
Syntax
GetProps()
SetProps
Description
Sets the value of the property for the specified CharFmt object.
See SetProps under the AFrame class for more information.
Returns
Void
Syntax
SetProps(setVal)
642
CMSOBJECT
CHAPTER 6 FUNCTION SUMMARY
Parameters
Data
Parameter name Type Optional Description
ObjectValid
Description
Indicates whether the specified CharFmt object is valid. Returns 1 if the CharFmt object is valid, else
returns 0.
See ObjectValid under the AFrame class for more information.
Returns
int
Syntax
ObjectValid()
CMSObject
CMSSetProperty()
Description
Sets a single property for a CMS object.
Returns
void
Syntax
void CMSSetProperty(cmsSessionId,objectId,propval);
643
CMSOBJECT
CHAPTER 6 FUNCTION SUMMARY
Parameters
Data
Parameter name Type Optional Description
Error Reason
CMSSetProperties()
Description
Sets multiple properties of a CMS object
Returns
void
Syntax
CMSSetProperties (cmsSessionId,objectId,propVals);
644
CMSOBJECT
CHAPTER 6 FUNCTION SUMMARY
Parameters
Data
Parameter name Type Optional Description
Error Reason
CMSGetProperty()
Description
Gets a specified property of a CMS object.
Returns
PropVals
645
CMSOBJECT
CHAPTER 6 FUNCTION SUMMARY
Syntax
CMSGetProperty (cmsSessionId, objectId,propertyId);
Parameters
Data
Parameter name Type Optional Description
Error Reason
CMSGetProperties()
Description
Gets the properties of a CMS object.
Returns
PropVals
Syntax
CMSGetProperties (cmsSessionId, objectId);
646
CMSOBJECT
CHAPTER 6 FUNCTION SUMMARY
Parameters
Data
Parameter name Type Optional Description
Error Reason
CMSEnableCommand()
Description
Enables the specified CMS command in the context menu of the CMS tree within FrameMaker.
Returns
void
Syntax
CMSEnableCommand (cmsSessionId, objectId, commandId);
Parameters
Data
Parameter name Type Optional Description
647
CMSOBJECT
CHAPTER 6 FUNCTION SUMMARY
Error Reason
CMSDisableCommand()
Description
Disables the specified CMS command in the context menu of the CMS tree within FrameMaker.
Returns
void
Syntax
CMSDisableCommand (cmsSessionId, objectId, commandId);
Parameters
Data
Parameter name Type Optional Description
Error Reason
648
CMSOBJECT
CHAPTER 6 FUNCTION SUMMARY
Error Reason
CMSShowCheckoutUI()
Description
Displays the checkout dialog for a CMS object
Returns
bool
Syntax
CMSShowCheckoutUI (sessionId, objectId, hideUiItems);
Parameters
Data
Parameter name Type Optional Description
649
CMSOBJECT
CHAPTER 6 FUNCTION SUMMARY
Error Reason
CMSShowCheckinUI()
Description
Displays the checkin dialog for a CMS object
Returns
bool
Syntax
CMSShowCheckinUI (sessionId, objectId, hideUiItems);
Parameters
Data
Parameter name Type Optional Description
650
CMSOBJECT
CHAPTER 6 FUNCTION SUMMARY
Error Reason
Constants.FE_CMSBadSessio The client specified an invalid session ID
nId
Constants.FE_CMSBadObjectI The client specified an invalid cms object ID
d
Constants.FE_BadParameter The function call specified an invalid parameter.
CMSShowCancelCheckoutUI()
Description
Displays the Cancel Check out dialog for a CMS object
Returns
void
Syntax
CMSShowCancelCheckoutUI (sessionId, objectId);
Parameters
Data
Parameter name Type Optional Description
651
CMSOBJECT
CHAPTER 6 FUNCTION SUMMARY
Error Reason
CMSShowDeleteUI()
Description
Displays the Delete dialog for a CMS object
Returns
CMSDeleteParam
Syntax
CMSShowDeleteUI (F_ObjHandleT cmsSessionId, objectId, T hideUiItems);
Parameters
Data
Parameter name Type Optional Description
652
CMSOBJECT
CHAPTER 6 FUNCTION SUMMARY
Error Reason
CMSShowCommonListUI()
Description
Displays the list-based dialogs such as “Show Version”, “Show Checked out files”, “Show dependents”
and “Show result”. These items are fetched using the CMSGetItems CMS command.
Returns
bool
Syntax
CMSShowCommonListUI (cmsSessionId, objectId, commandId, title,
columnProperties);
Parameters
Data
Parameter name Type Optional Description
653
CMSOBJECT
CHAPTER 6 FUNCTION SUMMARY
Error Reason
CMSShowPropertyUI()
Description
Displays the Property dialog for a CMS object
Returns
CMSProperties
Syntax
CMSShowPropertyUI ( cmsSessionId, objectId, props);
Parameters
Data
Parameter name Type Optional Description
cmsSessionId int No The ID of the CMS Session
cmsObjectId int No The ID of the CMS Object
props int No CMSPropertiesT structure specifies a set of
CMS object propeties. Set NULL if user wants
to show default properties
654
CMSOBJECT
CHAPTER 6 FUNCTION SUMMARY
Error Reason
CMSShowPropertyUIWithTitle
Description
Displays the Property dialog for a CMS object with a specified title.
Returns
CMSProperties
Syntax
CMSShowPropertyUIWithTitle ( cmsSessionId, objectId, props, title);
Parameters
Data
Parameter name Type Optional Description
Error Reason
655
CMSREGISTRATION
CHAPTER 6 FUNCTION SUMMARY
Error Reason
CMSRegistration
CMSGetCMSInfo()
Description
Gets the CMS information for a particular CMS registration id.
Returns
CMSInfo
Syntax
CMSGetCMSInfo (cmsId);
Parameters
Data
Parameter name Type Optional Description
Error Reason
CMSConfigLoginUI()
Description
Configures the CMS Connector Manager dialogs within the FrameMaker interface
Returns
void
656
CMSSESSION
CHAPTER 6 FUNCTION SUMMARY
Syntax
CMSConfigLoginUI (cmsId, userFields, userLoginUI);
Parameters
Data
Parameter name Type Optional Description
Error Reason
CMSSession
CMSLogout()
Description
Logs out the user from a particular CMS connection
Returns
void
Syntax
CMSLogout(cmsSessionId);
Parameters
Data
Parameter name Type Optional Description
657
CMSSESSION
CHAPTER 6 FUNCTION SUMMARY
Error Reason
GetCMSObjectFromPath()
Description
Gets CMS object from a URL path
Returns
CMS Object
Syntax
GetCMSObjectFromPath (cmsSessionId, urlPath)
Parameters
Data
Parameter name Type Optional Description
Error Reason
Constants.FE_CMSFailedGetIt Failed to get the CMS object from the specified path
emFrompath
CMSShowBrowseRepositoryUI
Description
Displays repository browser dialog based on flag “showContainerOnly”
Returns
CMS Object
658
CMSSESSION
CHAPTER 6 FUNCTION SUMMARY
Syntax
CMSShowBrowseRepositoryUI (cmsSessionId,showContainerOnly);
Parameters
Data
Parameter name Type Optional Description
CMSCreateObject
Description
Creates a CMS object.
Returns
CMS Object
Syntax
CMSCreateObject (cmsSessionId);
Parameters
Data
Parameter name Type Optional Description
cmsSessionId int No The ID of the CMS session
Error Reason
659
COLOR
CHAPTER 6 FUNCTION SUMMARY
CMSGetCmsIdFromSession
Description
Gets the CMS registration id from CMS Session id
Returns
CMS Object
Syntax
F_ApiCMSGetCmsIdFromSession (cmsSessionId);
Parameters
Data
Parameter name Type Optional Description
Error Reason
Color
Delete
Description
Deletes the specified color object.
See Delete under the AFrame class for more information.
Returns
int
Syntax
Delete()
660
COLOR
CHAPTER 6 FUNCTION SUMMARY
GetProps
Description
Retrieves the properties of the specified color object.
See GetProps under the AFrame class for more information.
Returns
PropVals
Syntax
GetProps()
SetProps
Description
Sets the value of the property for the color object.
See SetProps under the AFrame class for more information.
Returns
Void
Syntax
SetProps(setVal)
Parameters
Data
Parameter name Type Optional Description
setVal PropVal No The value of the property to be set.
s
ObjectValid
Description
Determines whether a color object is valid. Returns 1 if the Color object is valid, else returns 0.
See ObjectValid under the AFrame class for more information.
661
COMBINEDFONT
CHAPTER 6 FUNCTION SUMMARY
Returns
int
Syntax
ObjectValid()
CombinedFont
CombinedFont
Description
CombinedFont specifies a set of font characteristics for a combined font. The combinedFont field
specifies a CombinedFont object. From this object you can get information about the combined font
such as the base and Western font families, or the combined font name.
Returns
CombinedFont
Syntax
CombinedFont(combinedFont, variation, weight, angle)
Parameters
Data
Parameter name Type Optional Description
662
COMBINEDFONTDEFN
CHAPTER 6 FUNCTION SUMMARY
CombinedFontDefn
CombinedFamilyFonts
Description
Returns the permutations of angles, variations, and weights available for a specified combined font defi-
nition.
The method does not take any arguments.
The CombinedFamilyFonts() method returns a CombinedFonts object that provides a list of the
permutations of angles, variations, and weights available for the specified combined font definition.
Returns
CombinedFonts
Syntax
CombinedFamilyFonts()
Delete
Description
Deletes the specified CombinedFonts object.
See Delete under the AFrame class for more information.
Returns
int
Syntax
Delete()
GetProps
Description
Retrieves the properties of the specified CombinedFonts object.
See GetProps under the AFrame class for more information.
Returns
PropVals
663
COMBINEDFONTDEFN
CHAPTER 6 FUNCTION SUMMARY
Syntax
GetProps()
SetProps
Description
Sets the value of the desired property of the CombinedFonts object.
See SetProps under the AFrame class for more information.
Returns
Void
Syntax
SetProps(setVal)
Parameters
Data
Parameter name Type Optional Description
ObjectValid
Description
Indicates whether a CombinedFonts object is valid. Returns 1 if the CombinedFonts object is valid, else
returns 0.
See ObjectValid under the AFrame class for more information.
Returns
int
Syntax
ObjectValid()
664
COMBINEDFONTS
CHAPTER 6 FUNCTION SUMMARY
CombinedFonts
An Array of CombinedFont objects with integer indexing and a length property.
concat
Description
The original array is unchanged. If an array is provided as a parameter to concat(), each of its elements
are appended as separate array elements at the end of the new array. Returns a new array, the result of
concatenation the given values to the end of the original array.
Returns
CombinedFonts
Syntax
concat(value)
Parameters
Data
Parameter name Type Optional Description
pop
Description
Removes the last element from the array.
Returns
CombinedFont
Syntax
pop()
push
Description
Returns the new length of the array.
665
COMMAND
CHAPTER 6 FUNCTION SUMMARY
Returns
number
Syntax
push(value)
Parameters
Data
Parameter name Type Optional Description
Command
Delete
Description
Deletes the specified Command object.
See Delete under the AFrame class for more information.
Returns
int
Syntax
Delete()
GetProps
Description
Retrieves the properties of the specified Command object.
See GetProps under the AFrame class for more information.
Returns
PropVals
666
COMMAND
CHAPTER 6 FUNCTION SUMMARY
Syntax
GetProps()
SetProps
Description
Sets the value of the specified Command property.
See SetProps under the AFrame class for more information.
Returns
Void
Syntax
SetProps(setVal)
Parameters
Data
Parameter name Type Optional Description
ObjectValid
Description
Identifies whether a Command object is valid or not. Returns 1 if the Command object is valid, else
returns 0.
See ObjectValid under the AFrame class for more information.
Returns
int
Syntax
ObjectValid()
667
COMPARERET
CHAPTER 6 FUNCTION SUMMARY
Delete
Description
Deletes the specified Command object.
The method does not take any arguments.
Call the Delete() method directly on the object to be deleted.
Returns
int
Syntax
Delete()
CompareRet
CompareRet
Description
CompareRet provides the results of a call to the Compare() method. The method returns a
CompareRet object with the summary and composite documents.
Returns
CompareRet
Syntax
CompareRet(sum, comp)
Parameters
Data
Parameter name Type Optional Description
668
CONDFMT
CHAPTER 6 FUNCTION SUMMARY
CondFmt
Delete
Description
Deletes the specified CondFmt object.
See Delete under the AFrame class for more information.
Returns
int
Syntax
Delete()
DeleteCondTag
Description
Deletes a conditional tag from a document.
Returns
Status
Syntax
DeleteCondTag(docId, condTagId, action);
Parameters
Data
Parameter name Type Optional Description
669
CONDFMT
CHAPTER 6 FUNCTION SUMMARY
Error Reason
GetProps
Description
Retrieves the properties of the specified CondFmt object.
See GetProps under the AFrame class for more information.
Returns
PropVals
Syntax
GetProps()
SetProps
Description
Sets the value of the specified CondFmt object property.
See SetProps under the AFrame class for more information.
Returns
Void
Syntax
SetProps(setVal)
670
DOC
CHAPTER 6 FUNCTION SUMMARY
Parameters
Data
Parameter name Type Optional Description
ObjectValid
Description
Identifies whether a CondFmt object is valid or not. Returns 1 if the CondFmt object is valid, else returns
0.
See ObjectValid under the AFrame class for more information.
Returns
int
Syntax
ObjectValid()
Doc
AddText
Description
Inserts text into a paragraph or a text line.
The text you specify for text must use the FrameMaker character set. To add special characters, you must
specify octal (\) or hexadecimal (\x) sequences. The following table lists some of these sequences.
671
DOC
CHAPTER 6 FUNCTION SUMMARY
The method returns the location of the text that was added, on success. On failure, it sets one of the
following error numbers to FA_errno:
Error Reason
Returns
TextLoc
Syntax
AddText(textLoc, text)
Parameters
Data
Parameter name Type Optional Description
CenterOnText
Description
Centers a range of text such that the middle of the text appears in the middle of the document window.
672
DOC
CHAPTER 6 FUNCTION SUMMARY
The method returns FE_Success if it succeeds. On failure, the method returns one of the following
values toFA_errno:
Error Reason
Returns
int
Syntax
CenterOnText(textRange)
Parameters
Data
Parameter name Type Optional Description
Clear
Description
Deletes the current selection from a document.
If you specify 0 for flags, the method suppresses any interactive alerts or warnings that arise, leaves the
selected table cells empty, and deletes hidden text.
You can OR the following values into flags:
Flags Meaning
Constants.FF_INTERACTIVE (0x0001) Prompt the user with dialog or alert boxes that arise.
Constants.FF_CUT_TBL_CELLS (0x0002) Remove cleared table cells.
673
DOC
CHAPTER 6 FUNCTION SUMMARY
Flags Meaning
Constants.FF_VISIBLE_ONLY (0x0010) Clear only the visible portion of the selection.
Constants.FF_DONT_DELETE_HIDDEN_TEXT Do not delete hidden text.
(0x0004)
The Constants.FF_INTERACTIVE flag takes precedence over other flags. If you specify
Constants.FF_INTERACTIVE | Constants.FF_DONT_DELETE_HIDDEN_TEXT and the selec-
tion contains hidden text, then FrameMaker allows you to select whether to delete the hidden text or to
retain it.
The method returns FE_Success if it succeeds. On failure, the method returns one of the following
values to FA_errno:
Error Reason
Returns
int
Syntax
Clear(flags)
Parameters
Data
Parameter name Type Optional Description
flags int No Bit field that specifies how to clear the text
and how to handle interactive alerts. For
default settings, specify 0.
674
DOC
CHAPTER 6 FUNCTION SUMMARY
ClearAllChangebars
Description
Clears all change bars from a specified document.
NOTE: The method performs the same function as clicking the Clear All Change Bars box in the Change Bars
dialog box.
The method returns FE_Success if it succeeds. On failure, the method returns one of the following
values to FA_errno:
Error Reason
Returns
int
Syntax
ClearAllChangebars()
Compare
Description
Compares two documents or two books.
You can OR the values shown in the following table into the flags argument.
Flags Meaning
675
DOC
CHAPTER 6 FUNCTION SUMMARY
Flags Meaning
Constants.FF_CMP_SUMKIT Open the summary document.
(0x08)
Constants.FF_CMP_COMPKIT Open the composite document.
(0x10)
On success, the method returns a CompareRet structure containing the summary and composite docu-
ments detailing the changes found, if any.
On failure, the method returns one of the following values to FA_errno:
Error Reason
Returns
CompareRet
Syntax
Compare(newerDoc, flags, insertCondTag, deleteCondTag, replaceText,
compareThreshold)
Parameters
Data
Parameter name Type Optional Description
676
DOC
CHAPTER 6 FUNCTION SUMMARY
Data
Parameter name Type Optional Description
insertCondTag string No The condition tag to apply to insertions
shown in the composite document. For no
insert condition tag, specify null.
deleteCondTag string No The condition tag to apply to deletions shown
in the composite document. For no delete
condition tag, specify null.
replaceText string No Text to appear in place of the deleted text. For
no replacement text, specify null.
compareThreshold int No Threshold expresses the percentage of words
that can change before paragraphs are
considered not equal. If two paragraphs are
equal, word differences between them are
shown within a paragraph in the composite
document.
If this value is set to zero, the compare
function uses the default value of 75.If not
zero, the function uses the setting in the
FrameMaker configuration files.
Copy
Description
Copies the current selection to the FrameMaker Clipboard.
If the value of the flags parameter is 0, the method suppresses any interactive alerts or warnings that
arise.
You can also OR the following values into flags:
Flags Meaning
Constants.FF_INTERACTIVE (0x0001) Prompt user with dialog or alert boxes that arise.
Constants.FF_STRIP_HYPERTEXT (0x0080) Do not copy any hypertext markers in the selection.
Constants.FF_VISIBLE_ONLY (0x0010) Copy only the visible portion of the selection.
The Constants.FF_INTERACTIVE (0x0001) flag takes precedence over other flags. If you specify
Constants.FF_INTERACTIVE (0x0001)| Constants.FF_VISIBLE_ONLY (0x0010) and
the selection is not visible, then FrameMaker allows the user to choose whether to copy the selection or
not.
677
DOC
CHAPTER 6 FUNCTION SUMMARY
The method returns FE_Success if it succeeds. On failure, the method returns one of the following
values to FA_errno:
Error Reason
Returns
int
Syntax
Copy(flags)
Parameters
Data
Parameter name Type Optional Description
flags int No Bit field that specifies how to copy the text
and how to handle interactive alerts. For
default settings, specify 0.
Cut
Description
Cuts the current selection to the FrameMaker Clipboard.
If the value of the flags parameter is 0, the method suppresses any interactive alerts or warnings that
arise.
You can OR the following values into flags:
Flags Meaning
Constants.FF_INTERACTIVE (0x0001) Prompt user with dialog or alert boxes that arise.
678
DOC
CHAPTER 6 FUNCTION SUMMARY
Flags Meaning
Constants.FF_CUT_TBL_CELLS (0x0002) Remove cut table cells.
Constants.FF_VISIBLE_ONLY (0x0010) Cut only the visible portion of the selection.
Constants.FF_DONT_DELETE_HIDDEN_T Do not cut hidden text.
EXT (0x0004)
The Constants.FF_INTERACTIVE (0x0001) flag takes precedence over other flags. If you specify
Constants.FF_INTERACTIVE (0x0001)| Constants.FF_DONT_DELETE_HIDDEN_TEXT
(0x0004) and the selection contains hidden text, then FrameMaker allows the user to choose whether
to delete the hidden text or retain it.
The method returns FE_Success if it succeeds. On failure, the method returns one of the following
values to FA_errno:
Error Reason
Returns
int
Syntax
Cut(flags)
Parameters
Data
Parameter name Type Optional Description
flags int No Bit field that specifies how to cut the text and
how to handle interactive alerts. For default
settings, specify 0.
679
DOC
CHAPTER 6 FUNCTION SUMMARY
DeleteText
Description
Deletes a specified text range from a document.
The method returns FE_Success if it succeeds. On failure, the method returns one of the following
values to FA_errno:
Error Reason
Returns
int
Syntax
DeleteText(textRange)
Parameters
Data
Parameter name Type Optional Description
DemoteElement
Description
Demotes the selected structural element or elements. The element becomes a child of the sibling
element before it.
680
DOC
CHAPTER 6 FUNCTION SUMMARY
NOTE: At least one structural element must be selected in the document, before calling DemoteElement().
Error Reason
Constants.FE_WrongProduct (-60) The current FrameMaker version does not support the
requested operation
Constants.FE_BadDocId (-2) Invalid document.
Constants.FE_BadSelectionForOpe Current text selection is invalid for this operation.
ration (-59)
Returns
Void
Syntax
DemoteElement()
GetTextForRange
Description
Gets the text for a specified text range.
Call the method on the document as follows:
document.GetTextForRange()
You can OR the following constants into the flags parameter, to retrieve various text items:
681
DOC
CHAPTER 6 FUNCTION SUMMARY
682
DOC
CHAPTER 6 FUNCTION SUMMARY
The following table lists the flags for FTI_CharPropsChange. These flags indicate which properties
have changed.
Flags Meaning
683
DOC
CHAPTER 6 FUNCTION SUMMARY
Flags Meaning
684
DOC
CHAPTER 6 FUNCTION SUMMARY
Flags Meaning
Constants.FTF_SIZE The font size has changed.
(0x00100000)
Constants.FTF_SPREAD The font spread has changed.
(0x00020000)
Constants.FTF_STRETC The font stretch value has changed.
H (0x00001000)
Constants.FTF_STRIKET The strikethrough characteristic has changed.
HROUGH (0x04000000)
Constants.FTF_TSUME The Tsume setting has changed.
(0x00000400)
Constants.FTF_UNDER The underlining has changed.
LINING (0x08000000)
Constants.FTF_VARIATI The font variation has changed.
ON (0x40000000)
Constants.FTF_WEIGH The font weight has changed.
T (0x20000000)
On success, the method returns a TextItems structure containing the array of text items of the
requested types.
On failure, the method sets the len field of the returned TextItems structure to 0, and returns one of
the following values toFA_errno:
Error Reason
NOTE: The returned TextItems structure references memory that is allocated by the method. Use the Deal-
locateTextItems() method to free this memory when you are done with using it.
685
DOC
CHAPTER 6 FUNCTION SUMMARY
Returns
TextItems
Syntax
GetTextForRange(tr, flags)
Parameters
Data
Parameter name Type Optional Description
GetTextForRange2
Description
Gets the text for a specified text range.
You can OR the same flags as in the GetTextForRange() method, for the flags parameter.
On success, the method returns a TextItems structure containing the array of text items of the
requested types.
On failure, the method sets the len field of the returned TextItems structure to 0, and returns one of
the following values toFA_errno:
Error Reason
686
DOC
CHAPTER 6 FUNCTION SUMMARY
NOTE: The returned TextItems structure references memory that is allocated by the method. Use the Deal-
locateTextItems() method to free this memory when you are done with using it.
Returns
TextItems
Syntax
GetTextForRange2(tr, flags, flags2)
Parameters
Data
Parameter name Type Optional Description
GetTextProps
Description
Gets the text properties (such as the format tag, font family and size, and conditions) for a location in
text.
As the text properties can be different for each character, you can only get the text properties for an indi-
vidual location in the text.
On success, the method returns a PropVals structure with the text property list for the specified loca-
tion.
On failure, the method sets the len field of the returned PropVals structure to 0, and returns one of
the following values toFA_errno:
687
DOC
CHAPTER 6 FUNCTION SUMMARY
Error Reason
Returns
PropVals
Syntax
GetTextProps(textLoc)
Parameters
Data
Parameter name Type Optional Description
GetTextPropVal
Description
Gets a text property (such as the format tag, font family and size, or conditions) for a location in text.
As a text property can be different for each character, you can get the property for only one location in
text at a time.
On success, the method returns a PropVal structure with the details of the specified property.On
failure, the method returns one of the following values to FA_errno:
688
DOC
CHAPTER 6 FUNCTION SUMMARY
Error Reason
Returns
PropVal
Syntax
GetTextPropVal(textLoc, propNum)
Parameters
Data
Parameter name Type Optional Description
NOTE: The returned PropVal structure references memory that is allocated by the method. Use the Deal-
locatePropVal() method to free this memory when you are done with using it.
GetTextVal
Description
Gets the value of a specified text property, which can be of any type.
689
DOC
CHAPTER 6 FUNCTION SUMMARY
On success, the method returns a TypedVal structure containing the value of the specified property.On
failure, the method returns one of the following values to FA_errno:
Error Reason
Returns
TypedVal
Syntax
GetTextVal(textLoc, propNum)
Parameters
Data
Parameter name Type Optional Description
690
DOC
CHAPTER 6 FUNCTION SUMMARY
HypertextCommand
Description
Simulates a user-invoked hypertext command.
NOTE: Calling the HypertextCommand() method has the same effect as a user clicking on a hypertext
marker containing the specified text.
IMPORTANT: Ensure that you do not include any hypertext command in your custom menus. Because the
hypertext commands can only be executed in the View Only mode, and in the View Only mode, the
custom menus are not visible.
The method returns FE_Success on success.
On failure, the method returns the following value to FA_errno:
Error Reason
Returns
int
Syntax
HypertextCommand(hypertext)
Parameters
Data
Parameter name Type Optional Description
MergeIntoFirst
Description
Merges the selected structural elements into the first element in the selection.
NOTE: At least two structural elements must be selected in the document before calling the MergeInto-
First() method.
691
DOC
CHAPTER 6 FUNCTION SUMMARY
Error Reason
Constants.FE_WrongProduct (-60) The current FrameMaker version does not support the
requested operation
Constants.FE_BadDocId (-2) Invalid document.
Constants.FE_BadSelectionForOperati Current text selection is invalid for this operation.
on (-59)
Returns
Void
Syntax
MergeIntoFirst()
MergeIntoLast
Description
Merges the selected structural elements into the last element in the selection.
NOTE: At least two structural elements must be selected in the document before calling the MergeInto-
Last() method.
On success, the method does not return any value.
On failure, the method returns one of the following values to FA_errno:
Error Reason
Constants.FE_WrongProduct (-60) The current FrameMaker version does not support the
requested operation
Constants.FE_BadDocId (-2) Invalid document.
Constants.FE_BadSelectionForOperati Current text selection is invalid for this operation.
on (-59)
Returns
Void
692
DOC
CHAPTER 6 FUNCTION SUMMARY
Syntax
MergeIntoLast()
NewTable
Description
Inserts a table (FO_Tbl object).
When you create a table in the user interface, you can specify a Table Catalog format for the table.
FrameMaker uses the following properties of the Table Catalog format as the defaults for the new table:
• Number of body rows (TblInitNumBodyRows)
• Number of columns (TblInitNumCols)
• Number of footer rows (TblInitNumFRows)
• Number of header rows (TblInitNumHRows)
• Paragraph formats for header, body, and footer cells
For example, if the Table Catalog format’s TblInitNumCols property is set to 8, the NumCols prop-
erty of the new table is set to 8.With the NewTable() method, you can use the Table Catalog format
properties as defaults for the number of rows and columns in a new table, or you can provide your own
defaults. After you have create a table, you can add or remove rows with the AddRows() and
DeleteRows() methods. You can add or remove columns with the AddCols() and DeleteCols()
methods. If you use theNewTable() method to create a table in a structured FrameMaker document,
FrameMaker applies default element tags, such as Table, Row, and Cell, to the table element and its child
elements. To make these elements valid, you must add code to change their tags. In most cases it is
easier to add tables to structured documents by calling the NewElementInHierarchy() or
NewElement() methods to add a table element.
On success, the method returns the newly added table.
On failure, the method returns one of the following values to FA_errno:
Error Reason
Constants.FE_BadDocId Invalid document.
(-2)
Constants.FE_BadObjId (-3) Invalid Object
Constants.FE_NotTextObje Object specified for the text location is not a paragraph (FO_Pgf).
ct (-41)
Constants.FE_OffsetNotFou Offset specified for the text location could not be found in the specified
nd (-21) paragraph or text line.
Constants.FE_BadOperatio Function call specified an illegal operation.
n (-27)
693
DOC
CHAPTER 6 FUNCTION SUMMARY
Error Reason
Constants.FE_BadNew Table cannot be created; the format specified by format may not exist
(-23) or the text location specified by textLoc is in a table or a footnote.
Returns
Tbl
Syntax
NewTable(format, numCols, numBodyRows, numHeaderRows, numFooterRows,
textLoc)
Parameters
Data
Parameter name Type Optional Description
694
DOC
CHAPTER 6 FUNCTION SUMMARY
Paste
Description
Pastes the contents of the FrameMaker Clipboard into a specified document at the insertion point.
Cutting and Pasting objects causes FrameMaker to create an ID for the pasted object.
Specifying a value of 0 for the flags parameter, causes the Paste() method to suppress any interactive
alerts or warnings that arise. In addition, the method inserts columns to the left of the current columns
and rows above the current row.
You can OR the following values into flags:
Flags Meaning
Constants.FF_INTERACTIVE (0x0001) Prompt the user with dialog or alert boxes that arise.
Constants.FF_VISIBLE_ONLY (0x0010) Cut only the visible portion of the selection.
Constants.FF_DONT_DELETE_HIDDEN_ Do not replace hidden text.
TEXT (0x0004)
Constants.FF_DONT_APPLY_ALL_ROW Do no’t apply condition setting on the Clipboard to all rows.
S (0x0040) If whole table is selected and the Clipboard contains
condition setting, cancel the paste operation.
Constants.FF_REPLACE_CELLS Replace selected cells with cells on the Clipboard.
(0x0020)
Constants.FF_INSERT_BELOW_RIGHT Add columns to the right of the current column or below
(0x0008) the current row.
When you use the Paste() method to paste table cells into a table, it does not work exactly like the
interactive Paste command.
The interactive Paste command automatically overwrites cells if the Clipboard contains less than an
entire row or column. For example, if the insertion point is in a three-column table and the Clipboard
contains a single cell, the interactive Paste command overwrites the cell containing the insertion point
with the cell on the Clipboard.
If two cells in the table are selected, the interactive Paste command overwrites both of them with the
cell on the Clipboard.
By default, the Paste() method does not overwrite any cells. If the Clipboard contains less than an
entire row or column when you call Paste(), or if the current selection is less than an entire row, the
Paste() method does nothing and returns Constants.FE_BadSelectionForOperation
(-59).The method ensures that you do not inadvertently overwrite any cells.
To make the Paste() method replace cells with the Clipboard contents, you must call it with the
Constants.FF_REPLACE_CELLS (0x0020) flag set. The Constants.FF_INTERACTIVE
(0x0001) flag takes precedence over other flags.
695
DOC
CHAPTER 6 FUNCTION SUMMARY
Error Reason
Returns
int
Syntax
Paste(flags)
Parameters
Data
Parameter name Type Optional Description
flags int No Bit field that specifies how to paste the text
and how to handle interactive alerts. For
default settings, specify 0.
PromoteElement
Description
Promotes the selected structural element. The selected element becomes a sibling of its former parent
and appears immediately after its former parent. The siblings that follow it become the element’s chil-
dren.
NOTE: One structural element must be selected when the PromoteElement() method is called. The selected
element cannot be the root element or a child of the root element.
696
DOC
CHAPTER 6 FUNCTION SUMMARY
Error Reason
Constants.FE_WrongProduct (-60) The current FrameMaker version does not support the
requested operation
Constants.FE_BadDocId (-2) Invalid document.
Constants.FE_BadSelectionForOperati Current text selection is invalid for this operation.
on (-59)
Returns
Void
Syntax
PromoteElement()
QuickSelect
Description
Implements a quick-key interface that allows the user to choose a string from a list of strings in the docu-
ment Tag area.
The QuickSelect() method highlights the document Tag area and displays a prompt and the first
string in a specified list of strings.
The user can display a string in the Tag area by typing the first few letters of the string. The user can also
scroll through the strings by pressing the up and down arrow keys.
To choose a string, the user presses Return when the string appears in the Tag area. To cancel the choice,
the user clicks in the document without pressing Return.
On success, the method returns an index into the array of strings specified by stringlist or -1 if the user
cancels the quick selection.
On failure, the method returns one of the following values to FA_errno:
Error Reason
697
DOC
CHAPTER 6 FUNCTION SUMMARY
Returns
int
Syntax
QuickSelect(prompt, stringlist)
Parameters
Data
Parameter name Type Optional Description
Redisplay
Description
Updates the display for a specified document to reflect any changes that occurred when the
Displaying property was set to False. If you have set the Displaying property to False and
subsequently reset it to True, you should call the Redisplay() method to redisplay each document
you modified.
The method returns FE_Success on success. On failure, the method returns the following value to
FA_errno:
Error Reason
Returns
int
Syntax
Redisplay()
698
DOC
CHAPTER 6 FUNCTION SUMMARY
Reformat
Description
Reformats the specified document. If you have disabled and subsequently re-enabled reformatting by
setting the session property, Reformatting to True, you should call the Reformat() method to
reformat each changed document in the session.
The method returns FE_Success on success. On failure, the method returns the following value to
FA_errno:
Error Reason
Returns
int
Syntax
Reformat()
Rehyphenate
Description
Rehyphenates a specified document based on changes the user has made to words’ hyphenation points.
The method returns FE_Success on success. On failure, the method returns one of the following values
to FA_errno:
Error Reason
Returns
int
699
DOC
CHAPTER 6 FUNCTION SUMMARY
Syntax
Rehyphenate()
ResetEqnSettings
Description
Resets the document equation settings to the default settings.
The method returns FE_Success on success. On failure, the method returns one of the following values
to FA_errno:
Error Reason
Returns
int
Syntax
ResetEqnSettings()
ResetReferenceFrames
Description
Resets the reference frames in the specified document. This method is useful for updating a document
after you have programmatically changed a reference frame that is referenced by paragraphs in the
document.
The method returns FE_Success on success. On failure, the method returns one of the following values
to FA_errno:
Error Reason
700
DOC
CHAPTER 6 FUNCTION SUMMARY
Error Reason
Constants.FE_SystemError Could not allocate memory.
(-42)
Returns
int
Syntax
ResetReferenceFrames()
RestartPgfNumbering
Description
Restarts the paragraph numbering for a specified document.
The method returns FE_Success on success. On failure, the method returns one of the following values
to FA_errno:
Error Reason
Returns
int
Syntax
RestartPgfNumbering()
ScrollToText
Description
Scrolls the document window to a specified text range. The method scrolls the document to the end of
the range that is closest to the current display position.
The method returns FE_Success on success. On failure, the method returns one of the following values
to FA_errno:
701
DOC
CHAPTER 6 FUNCTION SUMMARY
Error Reason
Returns
int
Syntax
ScrollToText(textRange)
Parameters
Data
Parameter name Type Optional Description
SetTextProps
Description
Sets the text properties (such as the format tag, font family, and size) for a text range.
On success, the method does not return anything.
On failure, the method returns one of the following values to FA_errno:
Error Reason
702
DOC
CHAPTER 6 FUNCTION SUMMARY
Error Reason
Returns
Void
Syntax
SetTextProps(textRange, setVal)
703
DOC
CHAPTER 6 FUNCTION SUMMARY
Parameters
Data
Parameter name Type Optional Description
SetTextPropVal
Description
Sets a text property for a specified text range. The property can be of any type.
On success, the method does not return anything.
On failure, the method returns one of the following values to FA_errno:
Error Reason
704
DOC
CHAPTER 6 FUNCTION SUMMARY
Error Reason
Constants.FE_GenRuleSyntaxError(-56) General rule in structured document has a syntax error.
Constants.FE_NotTextObject (-41) Object specified for the text range is not a paragraph
(FO_Pgf) or a flow (FO_Flow).
Constants.FE_OffsetNotFound (-21) Offset specified for the text range could not be found in the
specified paragraph or text line.
Constants.FE_OutOfRange (-7) Specified property value is out of the legal range for the
specified property.
Constants.FE_ReadOnly (-6) Property is read-only and cannot be set.
Constants.FE_WrongProduct (-60) Current FrameMaker version does not support this
operation.
Returns
Void
Syntax
SetTextPropVal(textRange, setVal)
Parameters
Data
Parameter name Type Optional Description
SetTextVal
Description
Sets a specified text property for a text range.
On success, the method does not return anything.
On failure, the method returns one of the following values to FA_errno:
Error Reason
705
DOC
CHAPTER 6 FUNCTION SUMMARY
Error Reason
Returns
Void
Syntax
SetTextVal(textRange, propNum, setVal)
706
DOC
CHAPTER 6 FUNCTION SUMMARY
Parameters
Data
Parameter name Type Optional Description
SilentPrintDoc
Description
Prints a document or a book using the default print settings. Default print settings are the settings that
appear in the Print dialog box when the user attempts to print a document.
The SilentPrintDoc() method initializes the print page size and printer name if they do not have
values.
To change a document’s default print settings, set the document’s print properties. [To be linked to the
print properties]
For example, to change the turn registration marks on when you print a document, use the SetInt()
method to set the document’s RegistrationMarks property.
If you save the document or attempt to print it again within the same session, any changes you make to
a document’s print settings (except PrintStartPage and PrintEndPage) appears the next time the
user displays the Print dialog box for the document.
The method returns FE_Success on success. On failure, the method returns one of the following values
to FA_errno:
Error Reason
Returns
int
707
DOC
CHAPTER 6 FUNCTION SUMMARY
Syntax
SilentPrintDoc()
SimpleImportFormats
Description
Imports formats from a document to a document or a book. If you import formats to a book, the method
imports formats to each book component for which the ImportFmtInclude property is set to True.
You can OR the following values into the formatFlags parameter to specify which formats to import.
Constants.FF_UFF_COLOR Colors
(0x0100)
Constants.FF_UFF_COMBINED_F Combined Fonts
ONTS (0x0800)
Constants.FF_UFF_COND Conditions
(0x0010)
Constants.FF_UFF_DOCUMENT_P Document Properties
ROPS (0x0400)
Constants.FF_UFF_FONT Character Catalog Formats
(0x0002)
Constants.FF_UFF_MATH Equation Settings
(0x0200)
Constants.FF_UFF_PAGE (0x0004) Page Layouts
Constants.FF_UFF_PGF (0x0001) Paragraph Catalog Formats
Constants.FF_UFF_REFPAGE Reference Pages
(0x0020)
Constants.FF_UFF_REMOVE_EXC Remove exception formats from target documents
EPTIONS (0x8000)
Constants.FF_UFF_REMOVE_PAG Remove all forced page breaks from target documents
E_BREAKS (0x4000)
Constants.FF_UFF_TABLE Table Catalog Formats
(0x0008)
Constants.FF_UFF_VAR (0x0040) Variable Formats
Constants.FF_UFF_XREF (0x0080) Cross Reference Formats
708
DOC
CHAPTER 6 FUNCTION SUMMARY
The method returns FE_Success on success. On failure, the method returns one of the following values
to FA_errno:
Error Reason
Returns
int
Syntax
SimpleImportFormats(fromDoc, formatFlags)
Parameters
Data
Parameter name Type Optional Description
You can OR the following values into the formatFlags parameter to specify which formats to import.
Value Import
709
DOC
CHAPTER 6 FUNCTION SUMMARY
Value Import
SplitElement
Description
Splits the structural element containing the insertion point into two elements at the insertion point. The
insertion point must be inside the element you want to split.
The method does not return anything on success.
On failure, the method returns one of the following values to FA_errno:
Error Reason
Returns
Void
Syntax
SplitElement()
710
DOC
CHAPTER 6 FUNCTION SUMMARY
TextLocToElementLoc
Description
Returns the element location structure that corresponds to the current text location.
On success, the method returns an ElementLoc structure containing the element location.
On failure, the method returns one of the following values to FA_errno:
Error Reason
Returns
ElementLoc
Syntax
TextLocToElementLoc(tloc)
Parameters
Data
Parameter name Type Optional Description
UnWrapElement
Description
Removes the selected structural elements, but leaves their contents and child elements intact in the
document.
The UnWrapElement() method does not remove all the elements in the selection but only removes
the top-level elements.
NOTE: At least one structural element must be selected before calling the UnWrapElement() method. NOTE:
The UnWrapElement() method has no effect on object elements.
The method does not return anything on success.
711
DOC
CHAPTER 6 FUNCTION SUMMARY
Error Reason
Returns
Void
Syntax
UnWrapElement()
UpdateXRefs
Description
Resolves the unresolved the cross-references in a document. The method performs the same operation
as clicking Update in the Update References dialog.
You can OR the following values into the updateXRefFlags parameter:
Flags Meaning
The methodsn returns FE_Success on success. On failure, the method returns one of the following
values to FA_errno:
712
DOC
CHAPTER 6 FUNCTION SUMMARY
Error Reason
Returns
int
Syntax
UpdateXRefs(updateXRefFlags)
Parameters
Data
Parameter name Type Optional Description
UpdateDITAReferences
Description
Updates all DITA references of the specified type.
Returns
void
Syntax
UpdateDITAReferences(docId, flag);
Parameters
Data
Parameter name Type Optional Description
713
DOC
CHAPTER 6 FUNCTION SUMMARY
Data
Parameter name Type Optional Description
flag int No The available flags and their values are as
follows:
FF_DITAUpdateAllConrefs: 0x01
FF_DITAUpdateAllXrefs: 0x02
FF_DITAUpdateAllLinks: 0x04
FF_DITAUpdateAllTopicrefs: 0x08
FF_DITAUpdateAllTopicsetrefs: 0x10
FF_DITAUpdateAllReferences:
FF_DITAUpdateAllConrefs |
FF_DITAUpdateAllXrefs |
FF_DITAUpdateAllLinks |
FF_DITAUpdateAllTopicrefs |
FF_DITAUpdateAllTopicsetrefs
Error Reason
SimpleImportElementDefs
Description
Imports element definitions and the format change list catalog from an EDD or FrameMaker document
or book to a FrameMaker document or book.
NOTE: If you import element definitions to a book,the SimpleImportElementDefs() method imports
element definitions to each book component for which the ImportFmtInclude property is set to True.
You can OR the following flags into the importFlags parameter:
Flag Meaning
714
DOC
CHAPTER 6 FUNCTION SUMMARY
Flag Meaning
Constants.FF_IED_DO_NOT_I Do not treat the target document as an EDD but just import its
MPORT_EDD (0x0004) element catalog, if the target document is an EDD
Constants.FF_IED_NO_NOTIF Do not issue the Constants.FA_Note_PreImportElemDefs
Y (0x0008) (64) or Constants.FA_Note_PostImportElemDefs (65)
notifications.
The method returns FE_Success on success.On failure, the method returns one of the following values
to FA_errno:
Error Reason
Returns
int
Syntax
SimpleImportElementDefs(fromDocOrBook, importFlags)
Parameters
Data
Parameter name Type Optional Description
GetUniqueObject
Description
Gets the object from its persistent unique identifier (UID).
FrameMaker assigns a UID to each object in a document or book that is not identified by a name. The
UID, unlike the object’s ID, does not change from one session to another.
NOTE: When you copy an object to the clipboard and paste it, FrameMaker changes the UID. This also
happens when you hide and show conditional text.
715
DOC
CHAPTER 6 FUNCTION SUMMARY
Error Reason
Returns
Object
Syntax
GetUniqueObject(objType, unique)
Parameters
Data
Parameter name Type Optional Description
Close
Description
Closes a document or a book.
NOTE: If there are unsaved changes in a document and you set Constants.FF_CLOSE_MODIFIED
(1) for the flags parameter,then the Close() method abandons the changes and closes the file
anyway. NOTE: If you set the flags parameter to 0, the Close() method aborts the Close operation and
returns Constants.FE_DocModified (-8).
The method returns FE_Success, on success.
On failure, the method returns the following value to FA_errno:
Error Reason
Constants.FE_DocModi The document was modified and the flags parameter was set to 0
fied (-8)
716
DOC
CHAPTER 6 FUNCTION SUMMARY
Returns
int
Syntax
Close(flags)
Parameters
Data
Parameter name Type Optional Description
SimpleSave
Description
Saves a document or book.
If you set the interactive parameter to False and specify the document or book’s current name for
saveAsName, FrameMaker saves the document or book under its current name.
If you specify another filename for saveAsName, FrameMaker saves the document or book to that file-
name.
If you specify an empty string (""), FrameMaker does not save the file. Instead it sets FA_errno to
Constants.FE_BadParameter (-43).If you set theinteractive parameter to True,
FrameMaker displays the Save dialog box and allows the user to choose a filename. The document or
book’s current name appears as the default name.
The method returns the document it saved, on success.
On failure, the method returns one of the following values to FA_errno:
717
DOC
CHAPTER 6 FUNCTION SUMMARY
Error Reason
Returns
Doc
Syntax
SimpleSave(saveAsName, interactive)
718
DOC
CHAPTER 6 FUNCTION SUMMARY
Parameters
Data
Parameter name Type Optional Description
NewGraphicObject
Description
Creates the following types of graphic objects:
• Arc
• Ellipse
• Flow
• Group
• Inset
• Line
• Math
• Polyline
• Polygon
• Rectangle
• RoundRect
• TextFrame
• TextLine
• UnanchoredFrame
NOTE: To create an anchored frame, use NewAnchoredObject().
If there is more than one object within the parent frame, the NewGraphicObject() method adds the
new ESTK graphic object to the end of the linked list of child objects. That is, it puts it in the front of the
back-to-front draw order. The method automatically takes care of updating the object’s
PrevGraphicInFrame and NextGraphicInFrame properties. The NewGraphicObject()
method gives the new method graphic object a set of arbitrary default properties.
The method returns the newly created graphic object, on success.
On failure, the method returns one of the following values to FA_errno:
719
DOC
CHAPTER 6 FUNCTION SUMMARY
Error Reason
Returns
Object
Syntax
NewGraphicObject(objType, parent)
Parameters
Data
Parameter name Type Optional Description
NewArc
Description
Creates an arc object.
See NewGraphicObject for more information.
Returns
Arc
Syntax
NewArc(parent)
720
DOC
CHAPTER 6 FUNCTION SUMMARY
Parameters
Data
Parameter name Type Optional Description
NewEllipse
Description
Creates an ellipse object.
See NewGraphicObject for more information.
Returns
Ellipse
Syntax
NewEllipse(parent)
Parameters
Data
Parameter name Type Optional Description
NewFlow
Description
Creates a flow object.
See NewGraphicObject for more information.
721
DOC
CHAPTER 6 FUNCTION SUMMARY
Returns
Flow
Syntax
NewFlow(parent)
Parameters
Data
Parameter name Type Optional Description
NewGroup
Description
Creates a group object.
See NewGraphicObject for more information.
Returns
Group
Syntax
NewGroup(parent)
Parameters
Data
Parameter name Type Optional Description
722
DOC
CHAPTER 6 FUNCTION SUMMARY
NewInlineComponentOfType
Description
Creates an inline component. Presently only one type of inline component exists, and that is the
mini-TOC.
Returns
Void
Syntax
NewInlineComponentOfType(inlineCompType,tags,hyperLinks,textLocP)
Parameters
Data
Parameter name Type Optional Description
NewInset
Description
Creates an inset object.
See NewGraphicObject for more information.
Returns
Inset
Syntax
NewInset(parent)
723
DOC
CHAPTER 6 FUNCTION SUMMARY
Parameters
Data
Parameter name Type Optional Description
NewLine
Description
Creates a line object.
See NewGraphicObject for more information.
Returns
Line
Syntax
NewLine(parent)
Parameters
Data
Parameter name Type Optional Description
NewMath
Description
Creates a math object.
See NewGraphicObject for more information.
724
DOC
CHAPTER 6 FUNCTION SUMMARY
Returns
Math
Syntax
NewMath(parent)
Parameters
Data
Parameter name Type Optional Description
NewMathML
Description
Creates a MathML object.
See NewGraphicObject for more information.
Returns
MathML
Syntax
NewMathML(parent)
Parameters
Data
Parameter name Type Optional Description
725
DOC
CHAPTER 6 FUNCTION SUMMARY
NewPolyline
Description
Creates a polyline object.
See NewGraphicObject for more information.
Returns
Polyline
Syntax
NewPolyline(parent)
Parameters
Data
Parameter name Type Optional Description
NewPolygon
Description
Creates a polygon object.
See NewGraphicObject for more information.
Returns
Polygon
Syntax
NewPolygon(parent)
726
DOC
CHAPTER 6 FUNCTION SUMMARY
Parameters
Data
Parameter name Type Optional Description
NewRectangle
Description
Creates a rectangle object.
See NewGraphicObject for more information.
Returns
Rectangle
Syntax
NewRectangle(parent)
Parameters
Data
Parameter name Type Optional Description
NewRoundRect
Description
Creates a round rectangle object.
See NewGraphicObject for more information.
727
DOC
CHAPTER 6 FUNCTION SUMMARY
Returns
RoundRect
Syntax
NewRoundRect(parent)
Parameters
Data
Parameter name Type Optional Description
NewTextFrame
Description
Creates a text frame object.
See NewGraphicObject for more information.
Returns
TextFrame
Syntax
NewTextFrame(parent)
Parameters
Data
Parameter name Type Optional Description
728
DOC
CHAPTER 6 FUNCTION SUMMARY
NewTextLine
Description
Creates a text line object.
See NewGraphicObject for more information.
Returns
TextLine
Syntax
NewTextLine(parent)
Parameters
Data
Parameter name Type Optional Description
NewUnanchoredFrame
Description
Creates an unanchored frame object.
See NewGraphicObject for more information.
Returns
UnanchoredFrame
Syntax
NewUnanchoredFrame(parent)
729
DOC
CHAPTER 6 FUNCTION SUMMARY
Parameters
Data
Parameter name Type Optional Description
NewAnchoredFormattedObject
Description
Creates the following types of anchored objects:
• Var
• XRef
• Tbl
NewAnchoredFormattedObject() inserts the object at the specified location in text. It uses arbi-
trary default properties for the new object.
If you call NewAnchoredFormattedObject() to create a table, it uses the default numbers of rows
and columns from the specified Table Catalog format. To use the default Table Catalog format for a new
table, set the format to Null. To specify the number of rows and columns when you create a table, use
NewTable().
NewAnchoredFormattedObject() returns the created anchor object, on success.
On failure, the method sets FA_errno to one of the following values:
Error Reason
730
DOC
CHAPTER 6 FUNCTION SUMMARY
Returns
Object
Syntax
NewAnchoredFormattedObject(objType, format, textLoc)
Parameters
Data
Parameter name Type Optional Description
NewAnchoredFormattedVar
Description
Creates an AnchoredFormattedVar object.
See NewAnchoredFormattedObject under the Doc class for more information.
Returns
Var
Syntax
NewAnchoredFormattedVar(format, textLoc)
731
DOC
CHAPTER 6 FUNCTION SUMMARY
Parameters
Data
Parameter name Type Optional Description
NewAnchoredFormattedXRef
Description
Creates an AnchoredFormattedXRef object.
See NewAnchoredFormattedObject under the Doc class for more information.
Returns
XRef
Syntax
NewAnchoredFormattedXRef(format, textLoc)
Parameters
Data
Parameter name Type Optional Description
format string No The string that specifies the object’s format
(for example, Heading & Page for a
cross-reference, Format Afor a table, or
Current Date (Long) for a variable).
textLoc TextLoc No The text location at which to insert the
AnchoredFormattedXRef object.
NewAnchoredFormattedTbl
Description
Creates an AnchoredFormattedTbl object.
732
DOC
CHAPTER 6 FUNCTION SUMMARY
Returns
Tbl
Syntax
NewAnchoredFormattedTbl(format, textLoc)
Parameters
Data
Parameter name Type Optional Description
NewAnchoredObject
Description
Creates any of the following anchored objects:
• AFrame
• Fn
• Marker
• TiApiClient
• Table
NewAnchoredObject() inserts the object at the specified location in text. It uses arbitrary default
properties for the new object. Tables created by NewAnchoredObject() have a single column and a
single body row. It is usually easier to use NewTable() to create tables.
The method returns the created anchored object on success.
On failure, the method assigns one of the following values to FA_errno:
Error Reason
733
DOC
CHAPTER 6 FUNCTION SUMMARY
Error Reason
Returns
Object
Syntax
NewAnchoredObject(objType, textloc)
Parameters
Data
Parameter name Type Optional Description
NewAnchoredAFrame
Description
Creates an anchored AFrame object.
See NewAnchoredObject under the Doc class for more information.
Returns
AFrame
Syntax
NewAnchoredAFrame(textloc)
734
DOC
CHAPTER 6 FUNCTION SUMMARY
Parameters
Data
Parameter name Type Optional Description
NewAnchoredFn
Description
Creates an anchored Fn object.
See NewAnchoredObject under the Doc class for more information.
Returns
Fn
Syntax
NewAnchoredFn(textloc)
Parameters
Data
Parameter name Type Optional Description
NewAnchoredMarker
Description
Creates an anchored Marker object.
See NewAnchoredObject under the Doc class for more information.
Returns
Marker
Syntax
NewAnchoredMarker(textloc)
735
DOC
CHAPTER 6 FUNCTION SUMMARY
Parameters
Data
Parameter name Type Optional Description
NewAnchoredTiApiClient
Description
Creates an anchored TiApiClient object.
See NewAnchoredObject under the Doc class for more information.
Returns
TiApiClient
Syntax
NewAnchoredTiApiClient(textloc)
Parameters
Data
Parameter name Type Optional Description
NewAnchoredTbl
Description
Creates an anchored table object.
See NewAnchoredObject under the Doc class for more information.
Returns
Tbl
Syntax
NewAnchoredTbl(textloc)
736
DOC
CHAPTER 6 FUNCTION SUMMARY
Parameters
Data
Parameter name Type Optional Description
NewSeriesObject
Description
Creates the following series objects:
• BodyPage
• BookComponent
• Pgf
The method allows you to specify the position in the series at which to add the new object.
The method returns the created series object, on success.
On failure, the method assigns one of the following values to FA_errno:
Error Reason
Returns
One of the following objects: Body page, Pgf and Book Component
Syntax
NewSeriesObject(objType, previous)
737
DOC
CHAPTER 6 FUNCTION SUMMARY
Parameters
Data
Parameter name Type Optional Description
NewSeriesBodyPage
Description
Creates a body page.
See NewSeriesObject under the Doc class for more information.
Returns
BodyPage
Syntax
NewSeriesBodyPage(previous)
Parameters
Data
Parameter name Type Optional Description
previous BodyPag No The object in the series after which to add the
e new body page. To add a paragraph at the
start of a flow, specify the flow. To add a body
page at the beginning of any other series,
specify 0.
738
DOC
CHAPTER 6 FUNCTION SUMMARY
NewSeriesPgf
Description
Creates a paragraph.
See NewSeriesObject under the Doc class for more information.
Returns
Pgf
Syntax
NewSeriesPgf(previous)
Parameters
Data
Parameter name Type Optional Description
previous Pgf No The object in the series after which to add the
new paragraph. To add a paragraph at the
start of a flow, specify the flow. To add a
paragraph at the beginning of any other
series, specify 0.
GetNamedObject
Description
Gets the object with the specified name and type. The method works with the following objects:
• AttrCondExpr
• CharFmt
• Color
• CombinedFontDefn
• Command
• CondFmt
• ElementDef
• FmtChangeList
• Menu
• MenuItemSeparator
• MasterPage
• PgfFmt
739
DOC
CHAPTER 6 FUNCTION SUMMARY
• RefPage
• RulingFmt
• TblFmt
• UnanchoredFrame (reference frame)
• VarFmt
• XRefFmt
• MarkerType
The method returns the object, on success.
On failure, the method assigns one of the following values to FA_errno:
Error Reason
Returns
Object
Syntax
GetNamedObject(objType, name)
Parameters
Data
Parameter name Type Optional Description
GetNamedAttrCondExpr
Description
Gets an attribute conditional expression object.
See GetNamedObject under the Doc class for more information.
740
DOC
CHAPTER 6 FUNCTION SUMMARY
Returns
AttrCondExpr
Syntax
GetNamedAttrCondExpr(name)
Parameters
Data
Parameter name Type Optional Description
GetNamedCharFmt
Description
Gets a Character Format object.
See GetNamedObject under the Doc class for more information.
Returns
CharFmt
Syntax
GetNamedCharFmt(name)
Parameters
Data
Parameter name Type Optional Description
GetNamedColor
Description
Gets a Color object.
See GetNamedObject under the Doc class for more information.
741
DOC
CHAPTER 6 FUNCTION SUMMARY
Returns
Color
Syntax
GetNamedColor(name)
Parameters
Data
Parameter name Type Optional Description
name string No The name of the Color object you want to get.
GetNamedCombinedFontDefn
Description
Gets a Combined Font Definition object.
See GetNamedObject under the Doc class for more information.
Returns
CombinedFontDefn
Syntax
GetNamedCombinedFontDefn(name)
Parameters
Data
Parameter name Type Optional Description
GetNamedCondFmt
Description
Gets a Conditional Format object.
See GetNamedObject under the Doc class for more information.
742
DOC
CHAPTER 6 FUNCTION SUMMARY
Returns
CondFmt
Syntax
GetNamedCondFmt(name)
Parameters
Data
Parameter name Type Optional Description
GetNamedElementDef
Description
Gets an Element Definition object.
See GetNamedObject under the Doc class for more information.
Returns
ElementDef
Syntax
GetNamedElementDef(name)
Parameters
Data
Parameter name Type Optional Description
GetNamedFmtChangeList
Description
Gets a Format Change List object.
See GetNamedObject under the Doc class for more information.
743
DOC
CHAPTER 6 FUNCTION SUMMARY
Returns
FmtChangeList
Syntax
GetNamedFmtChangeList(name)
Parameters
Data
Parameter name Type Optional Description
GetNamedMasterPage
Description
Gets a MasterPage object.
See GetNamedObject under the Doc class for more information.
Returns
MasterPage
Syntax
GetNamedMasterPage(name)
Parameters
Data
Parameter name Type Optional Description
GetNamedPgfFmt
Description
Gets a Paragraph Format object.
See GetNamedObject under the Doc class for more information.
744
DOC
CHAPTER 6 FUNCTION SUMMARY
Returns
PgfFmt
Syntax
GetNamedPgfFmt(name)
Parameters
Data
Parameter name Type Optional Description
GetNamedRefPage
Description
Gets a Reference Page object.
See GetNamedObject under the Doc class for more information.
Returns
RefPage
Syntax
GetNamedRefPage(name)
Parameters
Data
Parameter name Type Optional Description
GetNamedRulingFmt
Description
Gets a Ruling Format object.
See GetNamedObject under the Doc class for more information.
745
DOC
CHAPTER 6 FUNCTION SUMMARY
Returns
RulingFmt
Syntax
GetNamedRulingFmt(name)
Parameters
Data
Parameter name Type Optional Description
GetNamedTblFmt
Description
Gets a Table Format object.
See GetNamedObject under the Doc class for more information.
Returns
TblFmt
Syntax
GetNamedTblFmt(name)
Parameters
Data
Parameter name Type Optional Description
GetNamedUnanchoredFrame
Description
Gets an Unanchored Frame object.
See GetNamedObject under the Doc class for more information.
746
DOC
CHAPTER 6 FUNCTION SUMMARY
Returns
UnanchoredFrame
Syntax
GetNamedUnanchoredFrame(name)
Parameters
Data
Parameter name Type Optional Description
GetNamedVarFmt
Description
Gets a Variable Format object.
See GetNamedObject under the Doc class for more information.
Returns
VarFmt
Syntax
GetNamedVarFmt(name)
Parameters
Data
Parameter name Type Optional Description
GetNamedXRefFmt
Description
Gets a Cross Reference Format object.
See GetNamedObject under the Doc class for more information.
747
DOC
CHAPTER 6 FUNCTION SUMMARY
Returns
XRefFmt
Syntax
GetNamedXRefFmt(name)
Parameters
Data
Parameter name Type Optional Description
GetNamedMarkerType
Description
Gets a Marker Type object.
See GetNamedObject under the Doc class for more information.
Returns
MarkerType
Syntax
GetNamedMarkerType(name)
Parameters
Data
Parameter name Type Optional Description
NewNamedObject
Description
Creates the following named objects:
• AttrCondExpr
748
DOC
CHAPTER 6 FUNCTION SUMMARY
• CharFmt
• CombinedFontDefn
• Color
• Command
• CondFmt
• ElementDef
• FmtChangeList
• MasterPage
• Menu
• MenuItemSeparator
• PgfFmt
• RefPage
• RulingFmt
• TblFmt
• VarFmt
• XRefFmt
• MarkerType
This method uses arbitrary default properties for the objects it creates.
NOTE: When you create a new element definition, it does not appear in the Element Catalog unless you
set ElementInCatalog to True. When you create a new book and specify a pathname, you must
specify an absolute pathname for the name argument. To create an untitled book, pass an empty string
for the name argument.
NewNamedObject() returns the created named object on success.
If this method fails, the method assigns one of the following values to FA_errno.
Returns
Objectof type objType
749
DOC
CHAPTER 6 FUNCTION SUMMARY
Syntax
NewNamedObject(objType, name)
Parameters
Data
Parameter name Type Optional Description
NewNamedAttrCondExpr
Description
Creates a named Attribute Conditional Expression.
See NewNamedObject under the Doc class for more information.
Returns
AttrCondExpr
Syntax
NewNamedAttrCondExpr(name)
Parameters
Data
Parameter name Type Optional Description
NewNamedCharFmt
Description
Creates a named Character Format.
See NewNamedObject under the Doc class for more information.
750
DOC
CHAPTER 6 FUNCTION SUMMARY
Returns
CharFmt
Syntax
NewNamedCharFmt(name)
Parameters
Data
Parameter name Type Optional Description
NewNamedCombinedFontDefn
Description
Creates a named Combined Font Definition.
See NewNamedObject under the Doc class for more information.
Returns
CombinedFontDefn
Syntax
NewNamedCombinedFontDefn(name)
Parameters
Data
Parameter name Type Optional Description
NewNamedColor
Description
Creates a named Color.
See NewNamedObject under the Doc class for more information.
751
DOC
CHAPTER 6 FUNCTION SUMMARY
Returns
Color
Syntax
NewNamedColor(name)
Parameters
Data
Parameter name Type Optional Description
NewNamedCondFmt
Description
Creates a named Conditional Format.
See NewNamedObject under the Doc class for more information.
Returns
CondFmt
Syntax
NewNamedCondFmt(name)
Parameters
Data
Parameter name Type Optional Description
NewNamedElementDef
Description
Creates a named Element Definition.
See NewNamedObject under the Doc class for more information.
752
DOC
CHAPTER 6 FUNCTION SUMMARY
Returns
ElementDef
Syntax
NewNamedElementDef(name)
Parameters
Data
Parameter name Type Optional Description
NewNamedFmtChangeList
Description
Creates a named Format Change List.
See NewNamedObject under the Doc class for more information.
Returns
FmtChangeList
Syntax
NewNamedFmtChangeList(name)
Parameters
Data
Parameter name Type Optional Description
NewNamedMasterPage
Description
Creates a named Master Page.
See NewNamedObject under the Doc class for more information.
753
DOC
CHAPTER 6 FUNCTION SUMMARY
Returns
MasterPage
Syntax
NewNamedMasterPage(name)
Parameters
Data
Parameter name Type Optional Description
NewNamedPgfFmt
Description
Creates a named Paragraph Format.
See NewNamedObject under the Doc class for more information.
Returns
PgfFmt
Syntax
NewNamedPgfFmt(name)
Parameters
Data
Parameter name Type Optional Description
NewNamedRefPage
Description
Creates a named Reference Page.
See NewNamedObject under the Doc class for more information.
754
DOC
CHAPTER 6 FUNCTION SUMMARY
Returns
RefPage
Syntax
NewNamedRefPage(name)
Parameters
Data
Parameter name Type Optional Description
NewNamedRulingFmt
Description
Creates a named Ruling Format.
See NewNamedObject under the Doc class for more information.
Returns
RulingFmt
Syntax
NewNamedRulingFmt(name)
Parameters
Data
Parameter name Type Optional Description
NewNamedTblFmt
Description
Creates a named Table Format.
See NewNamedObject under the Doc class for more information.
755
DOC
CHAPTER 6 FUNCTION SUMMARY
Returns
TblFmt
Syntax
NewNamedTblFmt(name)
Parameters
Data
Parameter name Type Optional Description
NewNamedVarFmt
Description
Creates a named Variable Format.
See NewNamedObject under the Doc class for more information.
Returns
VarFmt
Syntax
NewNamedVarFmt(name)
Parameters
Data
Parameter name Type Optional Description
NewNamedXRefFmt
Description
Creates a named Cross Reference Format.
See NewNamedObject under the Doc class for more information.
756
DOC
CHAPTER 6 FUNCTION SUMMARY
Returns
XRefFmt
Syntax
NewNamedXRefFmt(name)
Parameters
Data
Parameter name Type Optional Description
NewNamedMarkerType
Description
Creates a named Marker Type.
See NewNamedObject under the Doc class for more information.
Returns
MarkerType
Syntax
NewNamedMarkerType(name)
Parameters
Data
Parameter name Type Optional Description
DeleteUnusedFmts
Description
Deletes unused formats (character, paragraph or table) from the document.
The method returns Constants.FE_Success on success.
757
DOC
CHAPTER 6 FUNCTION SUMMARY
Error Reason
Constants.FE_BadD Invalid document.
ocId (-2)
Constants.FE_BadDele The format to be deleted is not one of character, paragraph or table.
te (-17)
Returns
int
Syntax
DeleteUnusedFmts(objType)
Parameters
Data
Parameter name Type Optional Description
DeleteUnusedCharFmt
Description
Deletes the unused Character Formats.
See DeleteUnusedFmts under the Doc class for more information.
Returns
int
Syntax
DeleteUnusedCharFmt()
DeleteUnusedPgfFmt
Description
Deletes the unused Paragraph Formats.
See DeleteUnusedFmts under the Doc class for more information.
758
DOC
CHAPTER 6 FUNCTION SUMMARY
Returns
int
Syntax
DeleteUnusedPgfFmt()
DeleteUnusedTblFmt
Description
Deletes the unused Table Formats.
See DeleteUnusedFmts under the Doc class for more information.
Returns
int
Syntax
DeleteUnusedTblFmt()
Find
Description
Performs the same actions as using the Find dialog box to search a document for text or other types of
content.
The properties you can assign to findParamsp are as follows:
759
DOC
CHAPTER 6 FUNCTION SUMMARY
760
DOC
CHAPTER 6 FUNCTION SUMMARY
Whenever the Find() method finds something that corresponds to a text range (a word, object anchor,
marker, etc.), it returns a TextRange structure for that range. However, when searching for structure
elements, you can find elements that have no corresponding text range.Structure elements for the
following table parts have no corresponding text range:
• Table title
• Table head
• Table foot
• Table body
761
DOC
CHAPTER 6 FUNCTION SUMMARY
• Table row
• Table cell
When the Find() method finds a structure element for one of these objects, it returns an empty
TextRange structure and sets FA_errno to FE_Success. In this case, you can get the document’s
ElementSelection property to return a corresponding ElementRange structure for the table part
structure element.
On failure, an empty text range is returned and FA_errno is set to one of the following values:
Error Reason
Returns
TextRange
Syntax
Find(textLoc, findParams)
Parameters
Data
Parameter name Type Optional Description
textLoc TextLoc No The text location to begin searching from.
findParams PropVal No A property list that specifies what to search
s for.
SetElementRange
Description
Sets an element range property.
To specify a selection that includes the root element, set beg.parentId to 0, beg.childId to the
root element, and end.childId to 0.
762
DOC
CHAPTER 6 FUNCTION SUMMARY
Error Reason
Returns
Void
Syntax
SetElementRange(propNum, setVal)
Parameters
Data
Parameter name Type Optional Description
ElementLocToTextLoc
Description
Returns the text location structure that corresponds with the current element location.
The method returns the text location structure containing the element location, on success.
On failure, the method sets FA_errno to one of the following values:
Error Reason
Constants.FE_BadDocId Invalid document.
(-2)
763
DOC
CHAPTER 6 FUNCTION SUMMARY
Error Reason
Returns
TextLoc
Syntax
ElementLocToTextLoc(eloc)
Parameters
Data
Parameter name Type Optional Description
UpdateVariables
Description
Updates all the variables in a document. The method performs the same operation as clicking Update in
the Variable dialog box.
The method returns FE_Success on success.
On failure, the method sets FA_errno to one of the following values:
Error Reason
764
DOC
CHAPTER 6 FUNCTION SUMMARY
Returns
int
Syntax
UpdateVariables()
TrackChangesAcceptAll
Description
Accepts all the track changes in the specified document.
The method returns FE_Success on success and returns a non-zero integer on failure.
Returns Constants.FE_AcceptRejectCalledOnWrongPreviewState (-110) if the docu-
ment is not in Preview Off state.
Returns
int
Syntax
TrackChangesAcceptAll()
TrackChangesRejectAll
Description
Rejects all the track changes in the specified document.
The method returns FE_Success on success and returns a non-zero integer on failure.
Returns Constants.FE_AcceptRejectCalledOnWrongPreviewState (-110) if the docu-
ment is not in Preview Off state.
Returns
int
Syntax
TrackChangesRejectAll()
765
DOC
CHAPTER 6 FUNCTION SUMMARY
UpdateXRef
Description
Updates the cross-references in a document. It performs the same operation as clicking Update in the
Cross-Reference window.
You can OR the values listed in the following tables into the updateXRefFlags argument.
Error Reason
Constants.FE_BadDocId Invalid document.
(-2)
Constants.FE_WrongProduc Product does not support the operation.
t (-60)
Constants.FE_SomeUnresol There are some unresolved references after the update.
ved (-42)
Returns
int
Syntax
UpdateXRef(srcDoc, xref)
766
DOC
CHAPTER 6 FUNCTION SUMMARY
Parameters
Data
Parameter name Type Optional Description
UpdateDITAReference
Description
Updates a DITA object
Error Reason
767
DOC
CHAPTER 6 FUNCTION SUMMARY
Error Reason
UpdateDITAReferences
Description
Updates all DITA references of the specified type.
Returns
void
Syntax
UpdateDITAReferences(docId, flag);
Parameters
Data
Parameter name Type Optional Description
768
DOC
CHAPTER 6 FUNCTION SUMMARY
Error Reason
Save
Description
Saves a document.
See Save under the Book class for more information.
Returns
Object
Syntax
Save(saveAsName, saveParams, saveReturnParams)
Parameters
Data
Parameter name Type Optional Description
769
DOC
CHAPTER 6 FUNCTION SUMMARY
Import
Description
Imports text or graphics into a document.
See Import under the Book class for more information.
Returns
Object
Syntax
Import(textLocP, filename, importParams, importReturnParams)
Parameters
Data
Parameter name Type Optional Description
AddNewBuildExpr
Description
Adds a Boolean conditional expression to the document.
The method returns FE_Success, on success.
On failure, the method sets FA_errno to one of the following values:
Error Reason
770
DOC
CHAPTER 6 FUNCTION SUMMARY
Error Reason
Returns
int
Syntax
AddNewBuildExpr(exprName, exprCondition)
Parameters
Data
Parameter name Type Optional Description
DeleteBuildExpr
Description
Deletes a Boolean conditional expression from the document.
The method returns FE_Success, on success.
On failure, the method sets FA_errno to one of the following values:
Error Reason
Constants.FE_BadDocId Invalid document.
(-2)
Constants.FE_ReadOnly Document is read-only.
(-6)
Constants.FE_BadName Boolean conditional expression string is invalid.
(-33)
771
DOC
CHAPTER 6 FUNCTION SUMMARY
Returns
int
Syntax
DeleteBuildExpr(exprName)
Parameters
Data
Parameter name Type Optional Description
SetActiveBuildExpr
Description
Applies the Boolean conditional expression to the document.
The method returns FE_Success, on success.
On failure, the method sets FA_errno to one of the following values:
Error Reason
Constants.FE_BadDocId Invalid document.
(-2)
Constants.FE_ReadOnly Document is read-only.
(-6)
Constants.FE_BadName Boolean conditional expression string is invalid.
(-33)
Returns
int
Syntax
SetActiveBuildExpr(exprName)
772
DOC
CHAPTER 6 FUNCTION SUMMARY
Parameters
Data
Parameter name Type Optional Description
GetActiveBuildExpr
Description
Returns the name of the active expression in the document or null if none is active.
On failure, the method returns the following value to FA_errno:
Error Reason
Constants.FE_BadDoc Invalid document.
Id (-2)
Returns
string
Syntax
GetActiveBuildExpr()
GetBuildExpr
Description
Returns the Boolean conditional expression in the document with the given name or null if none is found.
On failure, the method returns the following value to FA_errno:
Error Reason
Constants.FE_BadDoc Invalid document.
Id (-2)
Constants.FE_BadName () The parameter specified by exprName is invalid.
Returns
string
773
DOC
CHAPTER 6 FUNCTION SUMMARY
Syntax
GetBuildExpr(exprName)
Parameters
Data
Parameter name Type Optional Description
GetBuildExprCatalog
Description
Returns an array of all Boolean conditional expression names in the document.
On failure, the method returns the following value to FA_errno:
Error Reason
Returns
Strings
Syntax
GetBuildExprCatalog()
GetProps
Description
The GetProps() method retrieves the properties of the Doc object.
See GetProps under the AFrame class for more information.
Returns
PropVals
Syntax
GetProps()
774
ELEMENT
CHAPTER 6 FUNCTION SUMMARY
SetProps
Description
The SetProps() method sets the properties of the Doc object.
See SetProps under the AFrame class for more information.
Returns
Void
Syntax
SetProps(setVal)
Parameters
Data
Parameter name Type Optional Description
ObjectValid
Description
Returns 1 if the Doc object is valid, else returns 0.
See ObjectValid under the AFrame class for more information.
Returns
int
Syntax
ObjectValid()
Element
GetAttributes
Description
Gets an elements attributes.
775
ELEMENT
CHAPTER 6 FUNCTION SUMMARY
The Attributes structure returned by GetAttributes() includes the attributes in the following
order:
• Attributes defined in the element definition in the same order in which they are defined in the
element definition.
• Undefined attributes in random order.
If an element does not have attributes, the len field of the Attributes structure is set to 0 and the
val field is set to NULL.
Query the valflags field of the Attributes structure to determine whether the attribute is valid, or
if there are any validation errors . The validation error flags are as follows:
Error Reason
Constants.FV_AV_REQUIRED (1) This attribute is required, but it has no value assigned to it.
Constants.FV_AV_INVALID_CHOI At least one value for the attribute is not one of the
CE (2) allowed choices.
Constants.FV_AV_INVALID_FORM The attribute value is of the wrong type for the attribute.
AT (3)
Constants.FV_AV_IDREF_UNRESO The attribute refers to an undefined ID value.
LVED (4)
Constants.FV_AV_ID_DUPLICATE The attribute value should be unique, but is not unique
_IN_DOC (5) within the document.
Constants.FV_AV_TOO_MANY_TOK The attribute value has more than one token, but the
ENS (7) attribute definition only allows one token.
Constants.FV_AV_UNDEFINED The attribute is not defined for the containing element.
(8)
Constants.FV_AV_OUT_OF_RANGE The attribute value is out of the range specified in the
(9) attribute definition.
Error Reason
776
ELEMENT
CHAPTER 6 FUNCTION SUMMARY
Returns
Attributes
Syntax
GetAttributes()
Delete
Description
Deletes an element.
See Delete under the AFrame class for more information.
Returns
int
Syntax
Delete()
UpdateDITAReferences
GetText
Description
Gets the text from the element.
See GetText under the Cell class for more information.
Returns
TextItems
Syntax
GetText(flags)
Parameters
Data
Parameter name Type Optional Description
flags int No Denotes the various bit flags that specify the
items to be retrieved.
777
ELEMENT
CHAPTER 6 FUNCTION SUMMARY
GetProps
Description
Retrieves the properties of the element object.
See GetProps under the AFrame class for more information.
Returns
PropVals
Syntax
GetProps()
SetProps
Description
Sets the properties of the element object.
See SetProps under the AFrame class for more information.
Returns
Void
Syntax
SetProps(setVal)
Parameters
Data
Parameter name Type Optional Description
setVal PropVal No The property list.
s
ObjectValid
Description
Returns 1 if the element object is valid, else returns 0.
See ObjectValid under the AFrame class for more information.
778
ELEMENTCATALOGENTRIES
CHAPTER 6 FUNCTION SUMMARY
Returns
int
Syntax
ObjectValid()
ElementCatalogEntries
An Array of ElementCatalogEntry objects with integer indexing and a length property.
concat
Description
The original array is unchanged. If an array is provided as a parameter to concat(), each of its elements
are appended as separate array elements at the end of the new array. Returns a new array, the result of
concatenation the given values to the end of the original array.
Returns
ElementCatalogEntries
Syntax
concat(value)
Parameters
Data
Parameter name Type Optional Description
value Element No Can also be arrays.
Catalog
Entries
pop
Description
Removes the last element from the array.
Returns
ElementCatalogEntry
779
ELEMENTCATALOGENTRY
CHAPTER 6 FUNCTION SUMMARY
Syntax
pop()
push
Description
Returns the new length of the array.
Returns
number
Syntax
push(value)
Parameters
Data
Parameter name Type Optional Description
ElementCatalogEntry
ElementCatalogEntry
Description
Describes a catalog entry in an Element Catalog in FrameMaker.
Returns
ElementCatalogEntry
Syntax
ElementCatalogEntry(obj, flags)
780
ELEMENTDEF
CHAPTER 6 FUNCTION SUMMARY
Parameters
Data
Parameter name Type Optional Description
The value of the flags field can be one of the following constants:
Flag Meaning
ElementDef
NewTextFmtRules
Description
Creates a TextFmtRules object. The method allows you to associate the created object with a speci-
fied property of the parent object. For example, you can associate the text format rule as the text format
rule of the element definition.
The following table shows the parent object and the type of the object created by the method:
The method returns the created object, on success. On failure, the method assigns one of the following
values to FA_errno:
781
ELEMENTDEF
CHAPTER 6 FUNCTION SUMMARY
Error Reason
Returns
FmtRule
Syntax
NewTextFmtRules()
NewObjectFmtRules
Description
Creates a ObjectFmtRules object.
The following table shows the parent object and the type of the object created by the method:
The method returns the created object, on success. On failure, the method assigns one of the following
values to FA_errno:
Error Reason
782
ELEMENTDEF
CHAPTER 6 FUNCTION SUMMARY
Error Reason
Returns
FmtRule
Syntax
NewObjectFmtRules()
NewPrefixRules
Description
Creates a PrefixRules object.
The following table shows the parent object and the type of the object created by the method:
The method returns the created object, on success. On failure, the method assigns one of the following
values to FA_errno:
Error Reason
Constants.FE_BadDocId(-2) Invalid document.
Constants.FE_BadObjId(-3) Invalid object.
Constants.FE_BadNew(-23) Object cannot be created.
Constants.FE_BadPropNum The property number is invalid.
(-4)
Constants.FE_WrongProdu Current product interface is not Structured Framemaker.
ct(-60)
Returns
FmtRule
Syntax
NewPrefixRules()
783
ELEMENTDEF
CHAPTER 6 FUNCTION SUMMARY
NewSuffixRules
Description
Creates a SuffixRules object.
The following table shows the parent object and the type of the object created by the method:
The method returns the created object, on success. On failure, the method assigns one of the following
values to FA_errno:
Error Reason
Returns
FmtRule
Syntax
NewSuffixRules()
NewFirstPgfRules
Description
Creates a FirstPgfRules object.
The following table shows the parent object and the type of the object created by the method:
784
ELEMENTDEF
CHAPTER 6 FUNCTION SUMMARY
The method returns the created object, on success. On failure, the method assigns one of the following
values to FA_errno:
Error Reason
Returns
FmtRule
Syntax
NewFirstPgfRules()
NewLastPgfRules
Description
Creates a LastPgfRules object.
The following table shows the parent object and the type of the object created by the method:
The method returns the created object, on success. On failure, the method assigns one of the following
values to FA_errno:
Error Reason
785
ELEMENTDEF
CHAPTER 6 FUNCTION SUMMARY
Error Reason
Constants.FE_BadPropNum The property number is invalid.
(-4)
Constants.FE_WrongProdu Current product interface is not Structured Framemaker.
ct(-60)
Returns
FmtRule
Syntax
NewLastPgfRules()
ElementDefIsText
Description
Some structural elements in FrameMaker documents are placeholders for text. For example, when a
Para element contains text with a cross-reference element embedded in it, the ranges of text that
surround the cross-reference element are treated as elements themselves. These elements are called
text nodes.
The ElementDefIsText() method checks the value of an element definition to determine whether
the element it is applied to is a text node.
The method returns 1 if the element definition corresponds to that of a text node, or 0 if it does not
correspond to a text node.
Returns
int
Syntax
ElementDefIsText()
NewElement
Description
Creates a structural element (FO_Element) in a FrameMaker document.
NewElement() inserts the new element at the specified location in text, using the specified element
definition.
786
ELEMENTDEF
CHAPTER 6 FUNCTION SUMMARY
For object (noncontainer) elements, NewElement() inserts the appropriate type of object for the
element. If there is a matching format rule, NewElement() uses it to format the object. Otherwise, the
method uses one of the following default formats:
Error Reason
Constants.FE_BadNew Object cannot be created.
(-23)
Constants.FE_BadObjId Invalid object.
(-3)
Constants.FE_NotTextObje Object specified for the text location is not a paragraph (FO_Pgf)
ct(-41) or a text line (FO_TextLine).
Constants.FE_OffsetNotFo Offset specified for the text location could not be found in the
und (-21) specified paragraph or text line.
Returns
Element
787
ELEMENTDEF
CHAPTER 6 FUNCTION SUMMARY
Syntax
NewElement(textLoc)
Parameters
Data
Parameter name Type Optional Description
NewElementInHierarchy
Description
Creates a structural element (FO_Element) at a specified location in the element hierarchy of a struc-
tured FrameMaker document or book.
To create the root element for a book, you must use NewElementInHierarchy(). However, you
cannot use NewElementInHierarchy() to add elements to an unstructured document. You must
structure the document first by adding a root element with NewElement().
For object (noncontainer) elements, NewElementInHierarchy() inserts the appropriate type of
object for the element. If there is a matching format rule, NewElementInHierarchy() uses it to
format the object. Otherwise, the method uses one of the following default formats:
788
ELEMENTDEF
CHAPTER 6 FUNCTION SUMMARY
Error Reason
Returns
Element
Syntax
NewElementInHierarchy(elemLoc)
Parameters
Data
Parameter name Type Optional Description
WrapElement
Description
Inserts a structural element around the selected text and structural elements in a document.
789
ELEMENTDEF
CHAPTER 6 FUNCTION SUMMARY
If the flow that contains the selection is unstructured and the selection does not include the entire flow
contents, WrapElement() wraps the flow contents into a NoName element before wrapping the selec-
tion into the specified element definition.
The method does not return anything on success.
On failure, the method returns one of the following values to FA_errno:
Error Reason
Returns
Void
Syntax
WrapElement()
GetAttributeDefs
Description
Gets the attribute definitions of an element definition.
On success, the method returns an AttributeDefs structure containing the attribute definitions.
The attrType field of the returned AttributeDefs structure identifies the attribute value’s type. It
can specify one of the following constants:
Constant Value
Constant.FV_AT_STRING Any arbitrary text string.
(0)
Constant.FV_AT_STRINGS One or more arbitrary text strings.
(1)
Constants.FV_AT_CHOICES A value from a list of choices.
(2)
790
ELEMENTDEF
CHAPTER 6 FUNCTION SUMMARY
Constant Value
Error Reason
Constants.FE_BadDocId (-2) Invalid document.
Constants.FE_WrongProduct (-60) Current product interface is not Structured
FrameMaker.
Constants.FE_BadObjId(-3) Invalid object.
Returns
AttributeDefs
Syntax
GetAttributeDefs()
Delete
Description
Deletes an element definition.
See Delete under the AFrame class for more information.
791
ELEMENTDEF
CHAPTER 6 FUNCTION SUMMARY
Returns
int
Syntax
Delete()
GetProps
Description
The GetProps() method retrieves the properties of an element definition.
See GetProps under the AFrame class for more information.
Returns
PropVals
Syntax
GetProps()
SetProps
Description
The SetProps() method sets the properties of an element definition.
See SetProps under the AFrame class for more information.
Returns
Void
Syntax
SetProps(setVal)
Parameters
Data
Parameter name Type Optional Description
792
ELEMENTLOC
CHAPTER 6 FUNCTION SUMMARY
ObjectValid
Description
Returns 1 if the element definition is valid, else returns 0.
See ObjectValid under the AFrame class for more information.
Returns
int
Syntax
ObjectValid()
ElementLoc
ElementLoc
Description
Contains a structure specifying an element location. The ElementLoc structure contains the returned
parent element, child element and the offset within the child or parent element.
Returns
ElementLoc
Syntax
ElementLoc(parent, child, offset)
Parameters
Data
Parameter name Type Optional Description
793
ELEMENTRANGE
CHAPTER 6 FUNCTION SUMMARY
ElementRange
ElementRange
Description
A structure specifying an element’s range.
Returns
ElementRange
Syntax
ElementRange(beg, end)
Parameters
Data
Parameter name Type Optional Description
Ellipse
Delete
Description
Deletes an ellipse.
See Delete under the AFrame class for more information.
Returns
int
Syntax
Delete()
794
ELLIPSE
CHAPTER 6 FUNCTION SUMMARY
GetProps
Description
Retrieves the properties of an ellipse.
See GetProps under the AFrame class for more information.
Returns
PropVals
Syntax
GetProps()
SetProps
Description
Sets the properties of an ellipse.
See SetProps under the AFrame class for more information.
Returns
Void
Syntax
SetProps(setVal)
Parameters
Data
Parameter name Type Optional Description
setVal PropVal No The property list.
s
ObjectValid
Description
Returns 1 if the ellipse is valid, else returns 0.
See ObjectValid under the AFrame class for more information.
795
FILTERARGS
CHAPTER 6 FUNCTION SUMMARY
Returns
int
Syntax
ObjectValid()
FilterArgs
FilterArgs
Description
FilterArgs stores information that is used in the notification for a file-to-file filter
(FA_Note_FilterFileToFile). The notification handler receives a pointer to this structure.
Returns
FilterArgs
Definition
FilterArgs{infile, outfile, clname, informat, outformat, binname, args}
Parameters
Data
Parameter name Type Optional Description
796
FLOW
CHAPTER 6 FUNCTION SUMMARY
Flow
Delete
Description
Deletes a flow.
See Delete under the AFrame class for more information.
Returns
int
Syntax
Delete()
GetText
Description
Gets the text from the flow.
See GetText under the Cell class for more information.
Returns
TextItems
Syntax
GetText(flags)
Parameters
Data
Parameter name Type Optional Description
flags int No Denotes the various bit flags that specify the
items to be retrieved.
GetProps
Description
Retrieves the properties of the flow.
797
FLOW
CHAPTER 6 FUNCTION SUMMARY
Returns
PropVals
Syntax
GetProps()
SetProps
Description
Sets the properties of the flow.
See SetProps under the AFrame class for more information.
Returns
Void
Syntax
SetProps(setVal)
Parameters
Data
Parameter name Type Optional Description
ObjectValid
Description
Returns 1 if the flow is valid, else returns 0.
See ObjectValid under the AFrame class for more information.
Returns
int
Syntax
ObjectValid()
798
FMTCHANGELIST
CHAPTER 6 FUNCTION SUMMARY
FmtChangeList
Delete
Description
Deletes a format change list.
See Delete under the AFrame class for more information.
Returns
int
Syntax
Delete()
GetProps
Description
Retrieves the properties of the format change list.
See GetProps under the AFrame class for more information.
Returns
PropVals
Syntax
GetProps()
SetProps
Description
Sets the properties of a format change list.
See SetProps under the AFrame class for more information.
Returns
Void
Syntax
SetProps(setVal)
799
FMTRULE
CHAPTER 6 FUNCTION SUMMARY
Parameters
Data
Parameter name Type Optional Description
ObjectValid
Description
Returns 1 if the format change list is valid, else returns 0.
See ObjectValid under the AFrame class for more information.
Returns
int
Syntax
ObjectValid()
FmtRule
NewFmtRuleClauses
Description
Creates a FmtRuleClauses object.
The following table shows the parent object and the type of the object created by the method:
The method returns the created object, on success. On failure, the method assigns one of the following
values to FA_errno:
Error Reason
800
FMTRULE
CHAPTER 6 FUNCTION SUMMARY
Error Reason
Returns
FmtRuleClause
Syntax
NewFmtRuleClauses()
Delete
Description
Deletes a format rule.
See Delete under the AFrame class for more information.
Returns
int
Syntax
Delete()
GetProps
Description
Retrieves the properties of a format rule.
See GetProps under the AFrame class for more information.
Returns
PropVals
Syntax
GetProps()
801
FMTRULECLAUSE
CHAPTER 6 FUNCTION SUMMARY
SetProps
Description
Sets the properties of a format rule.
See SetProps under the AFrame class for more information.
Returns
Void
Syntax
SetProps(setVal)
Parameters
Data
Parameter name Type Optional Description
ObjectValid
Description
Returns 1 if the format rule is valid, else returns 0.
See ObjectValid under the AFrame class for more information.
Returns
int
Syntax
ObjectValid()
FmtRuleClause
NewSubFmtRule
Description
Creates a SubFmtRule object.
802
FMTRULECLAUSE
CHAPTER 6 FUNCTION SUMMARY
The following table shows the parent object and the type of the object created by the method:
The method returns the created object, on success. On failure, the method assigns one of the following
values to FA_errno:
Error Reason
Returns
FmtRule
Syntax
NewSubFmtRule()
NewFmtChangeList
Description
Creates a FmtChangeList object.
The following table shows the parent object and the type of the object created by the method:
The method returns the created object, on success. On failure, the method assigns one of the following
values to FA_errno:
803
FMTRULECLAUSE
CHAPTER 6 FUNCTION SUMMARY
Error Reason
Returns
FmtChangeList
Syntax
NewFmtChangeList()
Delete
Description
Deletes a format rule clause.
See Delete under the AFrame class for more information.
Returns
int
Syntax
Delete()
GetProps
Description
Retrieves the properties of a format rule clause.
See GetProps under the AFrame class for more information.
Returns
PropVals
804
FMTRULECLAUSE
CHAPTER 6 FUNCTION SUMMARY
Syntax
GetProps()
SetProps
Description
Sets the properties of a format rule clause.
See SetProps under the AFrame class for more information.
Returns
Void
Syntax
SetProps(setVal)
Parameters
Data
Parameter name Type Optional Description
ObjectValid
Description
Returns 1 if the format rule clause is valid, else returns 0.
See ObjectValid under the AFrame class for more information.
Returns
int
Syntax
ObjectValid()
805
FN
CHAPTER 6 FUNCTION SUMMARY
Fn
Delete
Description
Deletes a footnote.
See Delete under the AFrame class for more information.
Returns
int
Syntax
Delete()
GetText
Description
Gets the text from the footnote.
See GetText under the Cell class for more information.
Returns
TextItems
Syntax
GetText(flags)
Parameters
Data
Parameter name Type Optional Description
flags int No Denotes the various bit flags that specify the
items to be retrieved.
GetProps
Description
Retrieves the properties of a footnote.
806
FN
CHAPTER 6 FUNCTION SUMMARY
Returns
PropVals
Syntax
GetProps()
SetProps
Description
Sets the properties of a footnote.
See SetProps under the AFrame class for more information.
Returns
Void
Syntax
SetProps(setVal)
Parameters
Data
Parameter name Type Optional Description
ObjectValid
Description
Returns 1 if the footnote is valid, else returns 0.
See ObjectValid under the AFrame class for more information.
Returns
int
Syntax
ObjectValid()
807
FONT
CHAPTER 6 FUNCTION SUMMARY
Font
Font
Description
Font specifies a combination of font characteristics. Each field specifies an index into a list of names in
the FrameMaker product session. For example, the family field specifies the index of a name in the list
of names specified by the session property FontFamilyNames.
The weight field specifies the index of a name in the list of names specified by the session property
FontWeightNames.
Returns
Font
Syntax
Font(family, variation, weight, angle)
Parameters
Data
Parameter name Type Optional Description
Fonts
An Array of Font objects with integer indexing and a length property.
concat
Description
The original array is unchanged. If an array is provided as a parameter to concat(), each of its elements
are appended as separate array elements at the end of the new array. Returns a new array as the result
of concatenation, with the given values to the end of the original array.
808
FONTS
CHAPTER 6 FUNCTION SUMMARY
Returns
Fonts
Syntax
concat(value)
Parameters
Data
Parameter name Type Optional Description
pop
Description
Removes the last element from the array.
Returns
Font
Syntax
pop()
push
Description
Pushes the font on the array and the returns the new length of the array.
Returns
number
Syntax
push(value)
809
GROUP
CHAPTER 6 FUNCTION SUMMARY
Parameters
Data
Parameter name Type Optional Description
Group
A Group object represents a set of grouped objects. Group objects have the following methods.
Delete
Description
Deletes a group.
See Delete under the AFrame class for more information.
Returns
int
Syntax
Delete()
GetProps
Description
Retrieves the properties of the group.
See GetProps under the AFrame class for more information.
Returns
PropVals
Syntax
GetProps()
810
HIDDENPAGE
CHAPTER 6 FUNCTION SUMMARY
SetProps
Description
Sets the properties of the group.
See SetProps under the AFrame class for more information.
Returns
Void
Syntax
SetProps(setVal)
Parameters
Data
Parameter name Type Optional Description
ObjectValid
Description
Returns 1 if the group is valid, else returns 0.
See ObjectValid under the AFrame class for more information.
Returns
int
Syntax
ObjectValid()
HiddenPage
GetProps
Description
Retrieves the properties of the hidden page.
811
HIDDENPAGE
CHAPTER 6 FUNCTION SUMMARY
Returns
PropVals
Syntax
GetProps()
SetProps
Description
Sets the properties of the hidden page.
See SetProps under the AFrame class for more information.
Returns
Void
Syntax
SetProps(setVal)
Parameters
Data
Parameter name Type Optional Description
ObjectValid
Description
Returns 1 if the hidden page is valid, else returns 0.
See ObjectValid under the AFrame class for more information.
Returns
int
Syntax
ObjectValid()
812
HIDDENPAGE
CHAPTER 6 FUNCTION SUMMARY
ApplyPageLayout
Description
Applies the layout of a page to another page.
PageObject is any Page object i.e., BodyPage, MasterPage, HiddenPage.
The method returns FE_Success on success.
On failure, the method returns one of the following values to FA_errno:
Error Reason
Constants.FE_WrongProd Current FrameMaker product does not support this operation or
uct (-60) fmbatch is running.
Constants.FE_BadOperation Parameter specified an invalid operation.
(-27)
Constants.FE_BadParameter Parameter has an invalid value.
(-43)
Constants.FE_SystemError (-42) System Error.
Returns
int
Syntax
ApplyPageLayout(srcPage)
Parameters
Data
Parameter name Type Optional Description
813
INSET
CHAPTER 6 FUNCTION SUMMARY
Inset
GetIntByName
Description
Queries an integer facet.
GetIntByName() uses a transaction model to query facets. After you have finished a series of queries,
you must commit the transaction by calling GetIntByName() to query a facet named “ “.
If GetIntByName() returns 0, it may not indicate an error, because some facet values can be 0. To
determine if a returned 0 is a property value or an error, check FA_errno.
Returns the specified facet value, on success.
On failure, the method returns one of the following values to FA_errno:
Error Reason
Returns
int
Syntax
GetIntByName(propName)
Parameters
Data
Parameter name Type Optional Description
814
INSET
CHAPTER 6 FUNCTION SUMMARY
GetMetricByName
Description
Queries a metric facet.
GetMetricByName() uses a transaction model to query facets. After you have finished a series of
queries, you must commit the transaction by calling GetIntByName() to query a facet named “ “.
If GetMetricByName() returns 0, it may not indicate an error, because some facet values can be 0. To
determine if a returned 0 is a property value or an error, check FA_errno.
Returns the specified facet value, on success.
On failure, the method returns one of the following values to FA_errno:
Error Reason
Returns
int
Syntax
GetMetricByName(propName)
Parameters
Data
Parameter name Type Optional Description
815
INSET
CHAPTER 6 FUNCTION SUMMARY
GetUBytesByName
Description
Queries an unsigned bytes inset facet. The standard facets, EPSI and FrameImage, are examples of
unsigned bytes facets.
If a facet contains a large amount of data, GetUBytesByName() only gets a portion of the data each
time you call it.
To query a facet that contains a large amount of data, call GetUBytesByName() repeatedly until you
have retrieved all the data (that is, until UBytes.len is 0).
GetUBytesByName() uses a transaction model to query facets. After you have finished a series of
queries, you must commit the transaction by calling GetIntByName() to query a facet named “ “.
On success, the method returns a UBytes object containing a portion of the facet’s data.
On failure, the method returns one of the following values to FA_errno:
Error Reason
NOTE: The returned UBytes object references memory that is allocated by the method. Use
DeallocateUBytes() to free this memory when you are done using it.
Returns
UBytes
Syntax
GetUBytesByName(propName)
816
INSET
CHAPTER 6 FUNCTION SUMMARY
Parameters
Data
Parameter name Type Optional Description
SetIntByName
Description
Sets an integer inset facet.
SetIntByName() uses a transaction model to set facets. After you have finished setting facets, you
must commit the transaction by calling SetIntByName() to set a facet named“ “ to 0.
The method does not return anything on success.
On failure, the method returns one of the following values to FA_errno:
Error Reason
Returns
Void
Syntax
SetIntByName(propName, setVal)
817
INSET
CHAPTER 6 FUNCTION SUMMARY
Parameters
Data
Parameter name Type Optional Description
SetMetricByName
Description
Sets a metric facet.
SetMetricByName() uses a transaction model to set facets. After you have finished setting facets,
you must commit the transaction by calling SetIntByName() to set a facet named“ “ to 0.
The method does not return anything on success.
On failure, the method returns one of the following values to FA_errno:
Error Reason
Returns
Void
818
INSET
CHAPTER 6 FUNCTION SUMMARY
Syntax
SetMetricByName(propName, setVal)
Parameters
Data
Parameter name Type Optional Description
SetUBytesByName
Description
Sets an unsigned bytes inset facet. The standard facets, EPSI and FrameImage, are examples of unsigned
bytes facets.
To set a UBytes facet:
1) Call SetUBytesByName() to set the facet data.
If you are setting a facet with less than 10K of data, you need to call SetUBytesByName() only
once.
If you are setting the facet with more than 10K of data, you should call SetUBytesByName() mul-
tiple times, setting a chunk of the data each time. You can size the chunks between 0 and 10K.
NOTE: If you use larger chunks, the set operation goes faster. However, if the chunks are too large,
you may overload your platform’s interapplication communication mechanism.
2) Call SetUBytesByName() with propNameset to an empty string (“ “).
This lets the ESTK know that you have finshed setting up the facet.
The method does not return anything on success.
On failure, the method returns one of the following value to FA_errno:
Error Reason
Constants.FE_Transpo A transportation error occured.
rt (-1)
Returns
Void
Syntax
SetUBytesByName(propName, setVal)
819
INSET
CHAPTER 6 FUNCTION SUMMARY
Parameters
Data
Parameter name Type Optional Description
Delete
Description
Deletes an inset.
See Delete under the AFrame class for more information.
Returns
int
Syntax
Delete()
DeletePropByName
Description
Deletes an inset facet. Except for inset facets, all properties are identified by integer constants. Facets
are the only properties identified by name.
The method does not return anything on success.
On failure, the method returns one of the following values to FA_errno:
Error Reason
Constants.FE_BadPropNum Specified property number is invalid.
(-4)
Constants.FE_BadDocId Invalid document.
(-2)
Constants.FE_BadObjId Invalid object.
(-3)
Constants.FE_BadPropTyp Incorrect property type for this function.
e (-5)
820
INSET
CHAPTER 6 FUNCTION SUMMARY
Returns
Void
Syntax
DeletePropByName(propName)
Parameters
Data
Parameter name Type Optional Description
GetProps
Description
Retrieves the properties of the inset.
See GetProps under the AFrame class for more information.
Returns
PropVals
Syntax
GetProps()
SetProps
Description
Sets the properties of the inset.
See SetProps under the AFrame class for more information.
Returns
Void
Syntax
SetProps(setVal)
821
INTS
CHAPTER 6 FUNCTION SUMMARY
Parameters
Data
Parameter name Type Optional Description
ObjectValid
Description
Returns 1 if the inset is valid, else returns 0.
See ObjectValid under the AFrame class for more information.
Returns
int
Syntax
ObjectValid()
Ints
An Array of objects with integer indexing and a length property.
concat
Description
The original array is unchanged. If an array is provided as a parameter to concat(), each of its elements
are appended as separate array elements at the end of the new array. Returns a new array, the result of
concatenation the given values to the end of the original array.
Returns
Ints
Syntax
concat(value)
822
INTS
CHAPTER 6 FUNCTION SUMMARY
Parameters
Data
Parameter name Type Optional Description
pop
Description
Removes the last element from the array.
Returns
int
Syntax
pop()
push
Description
Returns the new length of the array.
Returns
number
Syntax
push(value)
Parameters
Data
Parameter name Type Optional Description
823
ITERATOR
CHAPTER 6 FUNCTION SUMMARY
Iterator
GetNextIteratorItem
Description
Retrieves the next iterator in the document.
Returns
PropVals
Syntax
GetNextIteratorItem()
Delete
Description
Deletes an iterator.
See Delete under the AFrame class for more information.
Returns
int
Syntax
Delete()
GetProps
Description
Retrieves the properties of the iterator.
See GetProps under the AFrame class for more information.
Returns
PropVals
Syntax
GetProps()
824
KEYCATALOG
CHAPTER 6 FUNCTION SUMMARY
SetProps
Description
Sets the properties of the iterator.
See SetProps under the AFrame class for more information.
Returns
Void
Syntax
SetProps(setVal)
Parameters
Data
Parameter name Type Optional Description
ObjectValid
Description
Returns 1 if the iterator is valid, else returns 0.
See ObjectValid under the AFrame class for more information.
Returns
int
Syntax
ObjectValid()
KeyCatalog
NewKeyDefinition
Description
Adds a new key definition to the specified key catalog.
825
KEYCATALOG
CHAPTER 6 FUNCTION SUMMARY
Returns
void
Syntax
NewKeyDefinition(key, href, srcType, srcFile, flags);
Parameters
Data
Parameter name Type Optional Description
key int No The tag of the key for which the key definition
is being added.
href int No The complete path of the file that the key
refers to.
srcType int No The type of the file that contains the key
definition. See the table below for a list of
values.
srcFile int No The complete path of the file that contains
the key definition.
flags int No Bit flags specifying information about the key
definition. See the table below for a list of
flags.
srcType Meaning
Constants.FF_DUPLICATE_KE The specified key definiton is duplicate (that is, it already exists in the
Y_DEFINITION Key Catalog) and will not be used as active definition for resolving
keys.
826
KEYCATALOG
CHAPTER 6 FUNCTION SUMMARY
Error Reason
UpdateKeyDefinition
Description
Updates the specified key definition field for the specified key in the specified key catalog.
Returns
void
Syntax
UpdateKeyDefinition(key, keyField, valuep);
Parameters
Data
Parameter name Type Optional Description
key int No The tag of the key for which the key definition
is being updated.
keyField int No The key field (or key information) that is being
updated.
valuep int No The value to update the keyField to.
The valid keyField values and the corresponding value type are as follows:
827
KEYCATALOG
CHAPTER 6 FUNCTION SUMMARY
Constants.FV_KeydefKeyTarg FT_String
et
Constants.FV_KeydefKeySrcFi FT_String
le
Constants.FV_KeydefKeySrcT FT_Integer
ype
Constants.FV_KeydefKeyVarLi FT_Vals
st
Constants.FV_KeydefKeyDefa FT_String
ultText
Constants.FV_KeydefKeyFoun FT_Integer
dInRefFile
Constants.FV_KeydefKeyInVal FT_Integer
id
Constants.FV_KeydefKeyAttrs FT_AttributesEx
Error Reason
828
KEYCATALOG
CHAPTER 6 FUNCTION SUMMARY
GetKeyDefinition
Description
Gets the specified key definition field for the specified key from the specified key catalog.
Returns
TypedVal
Syntax
GetKeyDefinition(key, keyField);
Parameters
Data
Parameter name Type Optional Description
key int No The tag of the key for which the key definition
is being asked for.
keyField int No The key field (or key information) that is being
asked for.
The valid keyField values and the corresponding value type are as follows:
Constants.FV_KeydefKeyTag FT_String
Constants.FV_KeydefKeyTarg FT_String
et
Constants.FV_KeydefKeySrcFi FT_String
le
Constants.FV_KeydefKeyDupl FT_Integer
icate
Constants.FV_KeydefKeySrcT FT_Integer
ype
Constants.FV_KeydefKeyVarLi FT_Vals
st
Constants.FV_KeydefKeyDefa FT_String
ultText
829
KEYCATALOG
CHAPTER 6 FUNCTION SUMMARY
Constants.FV_KeydefKeyFoun FT_Integer
dInRefFile
Constants.FV_KeydefKeyInVal FT_Integer
id
Constants.FV_KeydefKeyAttrs FT_AttributesEx
Error Reason
GetAllKeyDefinitions
Description
Gets all the key definitions from the specified key catalog.
Returns
TypedVals
Syntax
GetAllKeyDefinitions(filterType);
830
KEYCATALOG
CHAPTER 6 FUNCTION SUMMARY
Parameters
Data
Parameter name Type Optional Description
filterType int No Specifies the kind of key fields to get for each
key definition. flterType can have the
following values:
FV_KeyDefFieldsTypePrimary: Get only the
primary key fields (Tag, Target, SrcFile, and
Duplicate)
FV_KeyDefFieldsTypeAll: Get all key fields.
Returns the information in a TypedVals structure as follows: FieldTag is of type FT_Integer. FieldValue is
of type as specified in the table below.
Constants.FV_KeydefKeyAttrs FT_AttributesEx
Constants.FV_KeydefKeyDefa FT_String
ultText
Constants.FV_KeydefKeyDupl FT_Integer
icate
Constants.FV_KeydefKeyFoun FT_Integer
dInRefFile
Constants.FV_KeydefKeyInVal FT_Integer
id
Constants.FV_KeydefKeySrcFi FT_String
le
Constants.FV_KeydefKeySrcT FT_Integer
ype
Constants.FV_KeydefKeyTag FT_String
Constants.FV_KeydefKeyTarg FT_String
et
Constants.FV_KeydefKeyVarLi FT_Vals
st
831
KEYCATALOG
CHAPTER 6 FUNCTION SUMMARY
Error Reason
DeleteAllKeyDefinitions
Description
Deletes all the key definitions in the specified key catalog.
Returns
void
Syntax
DeleteAllKeyDefinitions();
If DeleteAllKeyDefinitions() fails, the method assigns following values to FA_errno:
Error Reason
GetAllKeys
Description
Gets all the key tags from the specified key catalog.
Returns
Strings
Syntax
GetAllKeys();
If GetAllKeys() fails, the method assigns following values to FA_errno:
832
KEYCATALOG
CHAPTER 6 FUNCTION SUMMARY
Error Reason
Delete
Description
Deletes a key catalog.
See Delete under the AFrame class for more information.
Returns
int
Syntax
Delete()
GetProps
Description
Retrieves the properties of the key catalog.
See GetProps under the AFrame class for more information.
Returns
PropVals
Syntax
GetProps()
SetProps
Description
Sets the properties of the key catalog.
See SetProps under the AFrame class for more information.
833
LINE
CHAPTER 6 FUNCTION SUMMARY
Returns
Void
Syntax
SetProps(setVal)
Parameters
Data
Parameter name Type Optional Description
ObjectValid
Description
Returns 1 if the key catalog is valid, else returns 0.
See ObjectValid under the AFrame class for more information.
Returns
int
Syntax
ObjectValid()
Line
Delete
Description
Deletes a line.
See Delete under the AFrame class for more information.
Returns
int
834
LINE
CHAPTER 6 FUNCTION SUMMARY
Syntax
Delete()
GetProps
Description
Retrieves the properties of the line.
See GetProps under the AFrame class for more information.
Returns
PropVals
Syntax
GetProps()
SetProps
Description
Sets the properties of the line.
See SetProps under the AFrame class for more information.
Returns
Void
Syntax
SetProps(setVal)
Parameters
Data
Parameter name Type Optional Description
ObjectValid
Description
Returns 1 if the line is valid, else returns 0.
835
MARKER
CHAPTER 6 FUNCTION SUMMARY
Returns
int
Syntax
ObjectValid()
Marker
Delete
Description
Deletes a marker.
See Delete under the AFrame class for more information.
Returns
int
Syntax
Delete()
GetProps
Description
Retrieves the properties of the marker.
See GetProps under the AFrame class for more information.
Returns
PropVals
Syntax
GetProps()
SetProps
Description
Sets the properties of the marker.
836
MARKERTYPE
CHAPTER 6 FUNCTION SUMMARY
Returns
Void
Syntax
SetProps(setVal)
Parameters
Data
Parameter name Type Optional Description
ObjectValid
Description
Returns 1 if the marker is valid, else returns 0.
See ObjectValid under the AFrame class for more information.
Returns
int
Syntax
ObjectValid()
MarkerType
Delete
Description
Deletes a marker type.
See Delete under the AFrame class for more information.
Returns
int
837
MARKERTYPE
CHAPTER 6 FUNCTION SUMMARY
Syntax
Delete()
GetProps
Description
Retrieves the properties of the marker type.
See GetProps under the AFrame class for more information.
Returns
PropVals
Syntax
GetProps()
SetProps
Description
Sets the properties of the marker type.
See SetProps under the AFrame class for more information.
Returns
Void
Syntax
SetProps(setVal)
Parameters
Data
Parameter name Type Optional Description
ObjectValid
Description
Returns 1 if the marker type is valid, else returns 0.
838
MASTERPAGE
CHAPTER 6 FUNCTION SUMMARY
Returns
int
Syntax
ObjectValid()
MasterPage
Delete
Description
Deletes a master page.
See Delete under the AFrame class for more information.
Returns
int
Syntax
Delete()
GetProps
Description
Retrieves the properties of the master page.
See GetProps under the AFrame class for more information.
Returns
PropVals
Syntax
GetProps()
SetProps
Description
Sets the properties of the master page.
839
MASTERPAGE
CHAPTER 6 FUNCTION SUMMARY
Returns
Void
Syntax
SetProps(setVal)
Parameters
Data
Parameter name Type Optional Description
ObjectValid
Description
Returns 1 if the master page is valid, else returns 0.
See ObjectValid under the AFrame class for more information.
Returns
int
Syntax
ObjectValid()
ApplyPageLayout
Description
Copies the layout of one master page to another.
PageObject is any Page object i.e., BodyPage, MasterPage, HiddenPage.
See ApplyPageLayout under the Body Page class for more information.
Returns
int
840
MATH
CHAPTER 6 FUNCTION SUMMARY
Syntax
ApplyPageLayout(srcPage)
Parameters
Data
Parameter name Type Optional Description
Math
Delete
Description
Deletes a math object.
See Delete under the AFrame class for more information.
Returns
int
Syntax
Delete()
GetProps
Description
Retrieves the properties of the math object.
See GetProps under the AFrame class for more information.
Returns
PropVals
Syntax
GetProps()
841
MATHML
CHAPTER 6 FUNCTION SUMMARY
SetProps
Description
Sets the properties of the math object.
See SetProps under the AFrame class for more information.
Returns
Void
Syntax
SetProps(setVal)
Parameters
Data
Parameter name Type Optional Description
ObjectValid
Description
Returns 1 if the math object is valid, else returns 0.
See ObjectValid under the AFrame class for more information.
Returns
int
Syntax
ObjectValid()
MathML
Delete
Description
Deletes a math object.
842
MATHML
CHAPTER 6 FUNCTION SUMMARY
Returns
int
Syntax
Delete()
GetProps
Description
Retrieves the properties of the math object.
See GetProps under the AFrame class for more information.
Returns
PropVals
Syntax
GetProps()
SetProps
Description
Sets the properties of the math object.
See SetProps under the AFrame class for more information.
Returns
Void
Syntax
SetProps(setVal)
Parameters
Data
Parameter name Type Optional Description
843
MENU
CHAPTER 6 FUNCTION SUMMARY
ObjectValid
Description
Returns 1 if the math object is valid, else returns 0.
See ObjectValid under the AFrame class for more information.
Returns
int
Syntax
ObjectValid()
Menu
DefineAndAddCommand
Description
Defines a command (FO_Command object) and adds it to a menu or menu bar.
The following table lists some FrameMaker product menus and the names you use to specify them:
Edit EditMenu
File FileMenu
Format FormatMenu
Graphics GraphicsMenu
Special SpecialMenu
Table TableMenu
View ViewMenu
Help !HelpMenu
If you call DefineAndAddCommand() and specify the name of a command that is already defined in
the user’s menu configuration files, FrameMaker gives precedence to the definition in the configuration
files.
844
MENU
CHAPTER 6 FUNCTION SUMMARY
If the configuration files assign a label or a shortcut to the command, then FrameMaker uses it instead
of the one you specify.If the command is already a menu item, FrameMaker ignores the menu that you
specify and leaves the menu item where it is.
NOTE: If you want to add a command to more than one menu, do not call DefineAndAddCommand()
repeatedly to add the command to the menus. To add a command to multiple menus, define the
command first by calling DefineCommand()—or call iDefineAndAddCommand(), if you want to define and
add the command to a menu at the same time—and then call AddCommandToMenu() to add the
command to other menus.
The method returns the command, on success.
On failure, the method returns one of the following values to FA_errno:
Error Reason
Returns
Command
Syntax
DefineAndAddCommand(cmdNum, name, label, shortcut)
845
MENU
CHAPTER 6 FUNCTION SUMMARY
Parameters
Data
Parameter name Type Optional Description
AddCommandToMenu
Description
Adds a FrameMaker product command or a client-defined command to a menu.
AddCommandToMenu() adds the command at the bottom of the specified menu. To change a
command’s position on a menu, set its PrevMenuItemInMenu and
NextMenuItemInMenuproperties.
To add a command that you have created, set the command parameter to the object returned by the
DefineCommand() call that created the command.To add a FrameMaker product command, you must
get its object. To get its object, call GetNamedObject() with the objectName parameter set to its
name.
The method returns the command, on success.
On failure, the method returns one of the following values to FA_errno:
846
MENU
CHAPTER 6 FUNCTION SUMMARY
Error Reason
Returns
number
Syntax
AddCommandToMenu(command)
Parameters
Data
Parameter name Type Optional Description
AddMenuToMenu
Description
Adds a FrameMaker product menu or a menu that you have created to another menu or menu bar.
To add a menu to one of FrameMaker menus or menu bars, you must get the menu or menu bar’s object.
To get its object, call GetNamedObject() with the objectName parameter set to its name.
NOTE: Your menu appears only on the menu bar you specify. For example, if you only add a menu to the
!MakerMainMenu menu bar, the menu will not appear if the user switches to quick menus. For your
menu to appear after the user has switched to quick menus, you must also add it to
!QuickMakerMainMenu.
847
MENU
CHAPTER 6 FUNCTION SUMMARY
The following table lists the types of menus you can add a menu to and how FrameMaker implements
the added menu.
Type of menu or
menu bar you are How FrameMaker
adding a menu to implements the added menu FrameMaker product adds the menu
To change a menu’s position on a menu or menu bar after you add it, set its PrevMenuItemInMenu
and NextMenuItemInMenu properties.
The method returns the command, on success.
On failure, the method returns one of the following values to FA_errno:
Error Reason
Returns
int
Syntax
AddMenuToMenu(menu)
848
MENU
CHAPTER 6 FUNCTION SUMMARY
Parameters
Data
Parameter name Type Optional Description
DefineAndAddMenu
Description
Defines a menu (FO_Menu object) and adds it to another menu.
To add a menu to one of FrameMaker’s menus or menu bars, you must get the menu or menu bar’s
object. To get its object, call GetNamedObject() with the objectName parameter set to its name.
The following table lists some of the menu bars that you can add menus to and the strings that specify
them. Menu bar names preceded by an exclamation mark (!) cannot be removed by the user.
NOTE: Your menu appears only on the menu bar you specify. For example, if you only add a menu to the
!MakerMainMenu menu bar, the menu will not appear if the user switches to quick menus. For your
menu to appear after the user has switched to quick menus, you must also add it to
!QuickMakerMainMenu.
849
MENU
CHAPTER 6 FUNCTION SUMMARY
If you call DefineAndAddMenu() and specify the name of a menu that is already defined in the user’s
menu configuration files, FrameMaker gives precedence to the definition in the configuration files.
If the configuration files assign a label to the menu, FrameMaker uses it instead of the one you specify.
If the menu is already on a menu or menu bar, FrameMaker ignores the menu that you specify and leaves
the menu where it is.
The following table lists the types of menus you can add a menu to and how FrameMaker implements
the added menu.
Type of menu or
menu bar you are How FrameMaker
adding a menu to implements the added menu FrameMaker product adds the menu
Error Reason
Returns
Menu
Syntax
DefineAndAddMenu(name, label)
850
MENU
CHAPTER 6 FUNCTION SUMMARY
Parameters
Data
Parameter name Type Optional Description
name string No A unique name for the new menu. If the user
or an ESTK client has already defined a
command or menu with this name, the new
menu replaces it.
label string No The title of the menu as it appears on the
menu bar or menu.
MenuItemInMenu
Description
Determines if a menu item or menu is on a menu or menu bar.
On success, the method returns the menu on which the menu item is found.
On failure, the method returns one of the following values to FA_errno:
Error Reason
Constants.FE_WrongProd Current FrameMaker product does not support this operation or
uct (-60) fmbatch is running.
Constants.FE_BadOperat Parameters specified an invalid operation.
ion (-27)
Constants.FE_BadParame The specified parameter has an invalid value.
ter (-43)
Returns
Menu
Syntax
MenuItemInMenu(menuitem, recursive)
851
MENU
CHAPTER 6 FUNCTION SUMMARY
Parameters
Data
Parameter name Type Optional Description
Delete
Description
Deletes a menu or menu item.
See Delete under the AFrame class for more information.
Returns
int
Syntax
Delete()
GetProps
Description
Retrieves the properties of the menu or menu item.
See GetProps under the AFrame class for more information.
Returns
PropVals
Syntax
GetProps()
852
MENU
CHAPTER 6 FUNCTION SUMMARY
SetProps
Description
Sets the properties of the menu or menu item.
See SetProps under the AFrame class for more information.
Returns
Void
Syntax
SetProps(setVal)
Parameters
Data
Parameter name Type Optional Description
ObjectValid
Description
Returns 1 if the menu or menu item is valid, else returns 0.
See ObjectValid under the AFrame class for more information.
Returns
int
Syntax
ObjectValid()
Delete
Description
Deletes a menu or menu item.
See Delete under the AFrame class for more information.
853
MENUITEMSEPARATOR
CHAPTER 6 FUNCTION SUMMARY
Returns
int
Syntax
Delete()
MenuItemSeparator
GetProps
Description
Retrieves the properties of the menu item separator.
See GetProps under the AFrame class for more information.
Returns
PropVals
Syntax
GetProps()
SetProps
Description
Sets the properties of the menu item separator.
See SetProps under the AFrame class for more information.
Returns
Void
Syntax
SetProps(setVal)
854
METRICS
CHAPTER 6 FUNCTION SUMMARY
Parameters
Data
Parameter name Type Optional Description
ObjectValid
Description
Returns 1 if the menu item spearator is valid, else returns 0.
See ObjectValid under the AFrame class for more information.
Returns
int
Syntax
ObjectValid()
Delete
Description
Deletes a menu item separator.
See Delete under the AFrame class for more information.
Returns
int
Syntax
Delete()
Metrics
An Array of objects with integer indexing and a length property.
855
METRICS
CHAPTER 6 FUNCTION SUMMARY
concat
Description
The original array is unchanged. If an array is provided as a parameter to concat(), each of its elements
are appended as separate array elements at the end of the new array. Returns a new array, the result of
concatenation the given values to the end of the original array.
Returns
Metrics
Syntax
concat(value)
Parameters
Data
Parameter name Type Optional Description
pop
Description
Removes the last element from the array.
Returns
int
Syntax
pop()
push
Description
Returns the new length of the array.
Returns
number
856
PGF
CHAPTER 6 FUNCTION SUMMARY
Syntax
push(value)
Parameters
Data
Parameter name Type Optional Description
Pgf
Delete
Description
Deletes a paragraph.
See Delete under the AFrame class for more information.
Returns
int
Syntax
Delete()
GetText
Description
Gets the text from the paragraph.
See GetText under the Cell class for more information.
Returns
TextItems
Syntax
GetText(flags)
857
PGF
CHAPTER 6 FUNCTION SUMMARY
Parameters
Data
Parameter name Type Optional Description
flags int No Denotes the various bit flags that specify the
items to be retrieved.
GetProps
Description
Retrieves the properties of the paragraph.
See GetProps under the AFrame class for more information.
Returns
PropVals
Syntax
GetProps()
SetProps
Description
Sets the properties of the paragraph.
See SetProps under the AFrame class for more information.
Returns
Void
Syntax
SetProps(setVal)
Parameters
Data
Parameter name Type Optional Description
858
PGFFMT
CHAPTER 6 FUNCTION SUMMARY
ObjectValid
Description
Returns 1 if the paragraph is valid, else returns 0.
See ObjectValid under the AFrame class for more information.
Returns
int
Syntax
ObjectValid()
PgfFmt
Delete
Description
Deletes a paragraph format.
See Delete under the AFrame class for more information.
Returns
int
Syntax
Delete()
GetProps
Description
Retrieves the properties of the paragraph format.
See GetProps under the AFrame class for more information.
Returns
PropVals
Syntax
GetProps()
859
PGFFMT
CHAPTER 6 FUNCTION SUMMARY
SetProps
Description
Sets the properties of the paragraph format.
See SetProps under the AFrame class for more information.
Returns
Void
Syntax
SetProps(setVal)
Parameters
Data
Parameter name Type Optional Description
ObjectValid
Description
Returns 1 if the paragraph format is valid, else returns 0.
See ObjectValid under the AFrame class for more information.
Returns
int
Syntax
ObjectValid()
860
POINT
CHAPTER 6 FUNCTION SUMMARY
Point
Point
Description
Point describes an individual coordinate pair. FrameMaker measures coordinates from the upper-left
corner of the parent frame
Returns
Point
Syntax
Point(x, y)
Parameters
Data
Parameter name Type Optional Description
x int No X coordinate
y int No Y coordinate
Points
An Array of Point objects with integer indexing and a length property.
concat
Description
The original array is unchanged. If an array is provided as a parameter to concat(), each of its elements
are appended as separate array elements at the end of the new array. Returns a new array, the result of
concatenation the given values to the end of the original array.
Returns
Points
Syntax
concat(value)
861
POINTS
CHAPTER 6 FUNCTION SUMMARY
Parameters
Data
Parameter name Type Optional Description
pop
Description
Removes the last element from the array.
Returns
Point
Syntax
pop()
push
Description
Returns the new length of the array.
Returns
number
Syntax
push(value)
Parameters
Data
Parameter name Type Optional Description
862
POLYGON
CHAPTER 6 FUNCTION SUMMARY
Polygon
Delete
Description
Deletes a polygon.
See Delete under the AFrame class for more information.
Returns
int
Syntax
Delete()
GetProps
Description
Retrieves the properties of the polygon.
See GetProps under the AFrame class for more information.
Returns
PropVals
Syntax
GetProps()
SetProps
Description
Sets the properties of the polygon.
See SetProps under the AFrame class for more information.
Returns
Void
Syntax
SetProps(setVal)
863
POLYLINE
CHAPTER 6 FUNCTION SUMMARY
Parameters
Data
Parameter name Type Optional Description
ObjectValid
Description
Returns 1 if the polygon is valid, else returns 0.
See ObjectValid under the AFrame class for more information.
Returns
int
Syntax
ObjectValid()
Polyline
Delete
Description
Deletes a polyline.
See Delete under the AFrame class for more information.
Returns
int
Syntax
Delete()
GetProps
Description
Retrieves the properties of the polyline.
864
POLYLINE
CHAPTER 6 FUNCTION SUMMARY
Returns
PropVals
Syntax
GetProps()
SetProps
Description
Sets the properties of the polyline.
See SetProps under the AFrame class for more information.
Returns
Void
Syntax
SetProps(setVal)
Parameters
Data
Parameter name Type Optional Description
ObjectValid
Description
Returns 1 if the polyline is valid, else returns 0.
See ObjectValid under the AFrame class for more information.
Returns
int
Syntax
ObjectValid()
865
PROPIDENT
CHAPTER 6 FUNCTION SUMMARY
PropIdent
PropIdent
Description
PropIdent provides a property identifier. Properties can be identified by either a name or a number
(integer constant). ESTK provides defined constants for property numbers (for example, Fill and Height).
Only inset properties (facets) are identified by names.If a property is identified by a name,
PropIdent.num is set to 0.If a property is identified by a number, PropIdent.name is set to a null
string.
Returns
PropIdent
Syntax
PropIdent(num, name)
Parameters
Data
Parameter name Type Optional Description
PropVal
PropVal
Description
Describes a property-value pair.
Returns
PropVal
Syntax
PropVal(propIdent, propVal)
866
PROPVALS
CHAPTER 6 FUNCTION SUMMARY
Parameters
Data
Parameter name Type Optional Description
PropVals
An Array of PropVal objects with integer indexing and a length property.
concat
Description
The original array is unchanged. If an array is provided as a parameter to concat(), each of its elements
are appended as separate array elements at the end of the new array. Returns a new array, the result of
concatenation the given values to the end of the original array.
Returns
PropVals
Syntax
concat(value)
Parameters
Data
Parameter name Type Optional Description
pop
Description
Removes the last element from the array.
867
RECTANGLE
CHAPTER 6 FUNCTION SUMMARY
Returns
PropVal
Syntax
pop()
push
Description
Returns the new length of the array.
Returns
number
Syntax
push(value)
Parameters
Data
Parameter name Type Optional Description
Rectangle
Delete
Description
Deletes a rectangle.
See Delete under the AFrame class for more information.
Returns
int
Syntax
Delete()
868
RECTANGLE
CHAPTER 6 FUNCTION SUMMARY
GetProps
Description
Retrieves the properties of the rectangle.
See GetProps under the AFrame class for more information.
Returns
PropVals
Syntax
GetProps()
SetProps
Description
Sets the properties of the rectangle.
See SetProps under the AFrame class for more information.
Returns
Void
Syntax
SetProps(setVal)
Parameters
Data
Parameter name Type Optional Description
setVal PropVal No The property list.
s
ObjectValid
Description
Returns 1 if the rectangle is valid, else returns 0.
See ObjectValid under the AFrame class for more information.
869
REFPAGE
CHAPTER 6 FUNCTION SUMMARY
Returns
int
Syntax
ObjectValid()
RefPage
Delete
Description
Deletes a reference page.
See Delete under the AFrame class for more information.
Returns
int
Syntax
Delete()
GetProps
Description
Retrieves the properties of the reference page.
See GetProps under the AFrame class for more information.
Returns
PropVals
Syntax
GetProps()
SetProps
Description
Sets the properties of the reference page.
See SetProps under the AFrame class for more information.
870
REFPAGE
CHAPTER 6 FUNCTION SUMMARY
Returns
Void
Syntax
SetProps(setVal)
Parameters
Data
Parameter name Type Optional Description
ObjectValid
Description
Returns 1 if the reference page is valid, else returns 0.
See ObjectValid under the AFrame class for more information.
Returns
int
Syntax
ObjectValid()
ApplyPageLayout
Description
PageObject is any Page object i.e., BodyPage, MasterPage, HiddenPage.
See ApplyPageLayout under the BodyPage class for more information.
Returns
int
Syntax
ApplyPageLayout(srcPage)
871
ROUNDRECT
CHAPTER 6 FUNCTION SUMMARY
Parameters
Data
Parameter name Type Optional Description
RoundRect
Delete
Description
Deletes a round rectangle.
See Delete under the AFrame class for more information.
Returns
int
Syntax
Delete()
GetProps
Description
Retrieves the properties of the round rectangle.
See GetProps under the AFrame class for more information.
Returns
PropVals
Syntax
GetProps()
SetProps
Description
Sets the properties of the rounded rectangle.
872
ROW
CHAPTER 6 FUNCTION SUMMARY
Returns
Void
Syntax
SetProps(setVal)
Parameters
Data
Parameter name Type Optional Description
ObjectValid
Description
Returns 1 if the rounded rectangle is valid, else returns 0.
See ObjectValid under the AFrame class for more information.
Returns
int
Syntax
ObjectValid()
Row
AddRows
Description
Adds one or more rows to a table.
The following table lists the constants you can specify for the direction parameter:
873
ROW
CHAPTER 6 FUNCTION SUMMARY
Direction Meaning
Error Reason
Returns
int
Syntax
AddRows(direction, numNewRows)
Parameters
Data
Parameter name Type Optional Description
874
ROW
CHAPTER 6 FUNCTION SUMMARY
Delete
Description
Deletes a row.
See Delete under the AFrame class for more information.
Returns
int
Syntax
Delete()
GetProps
Description
Retrieves the properties of the row.
See GetProps under the AFrame class for more information.
Returns
PropVals
Syntax
GetProps()
SetProps
Description
Sets the properties of the row.
See SetProps under the AFrame class for more information.
Returns
Void
Syntax
SetProps(setVal)
875
RUBI
CHAPTER 6 FUNCTION SUMMARY
Parameters
Data
Parameter name Type Optional Description
ObjectValid
Description
Returns 1 if the row is valid, else returns 0.
See ObjectValid under the AFrame class for more information.
Returns
int
Syntax
ObjectValid()
Rubi
Delete
Description
Deletes a rubi object.
See Delete under the AFrame class for more information.
Returns
int
Syntax
Delete()
876
RUBI
CHAPTER 6 FUNCTION SUMMARY
GetText2
Description
Gets the text from all the objects available to GetText(), as well as an extended set of document
objects that includes the rubi object.
TextItems.dataType can be one of the following constants (in addition to the constants returned by
GetText ()):
Constants.FTI2_RubiTextBegin The beginning of rubi text. The FO_Rubi object for the rubi
(0x80000001) composite that contains the rubi
text.
Constants.FTI2_RubiTextEnd The end of rubi text. The FO_Rubi object for the rubi
(0x80000002) composite that contains the rubi
text.
Constants.FTI2_RubiComposite The beginning of a rubi FO_Rubi object.
Begin (0x80000004) composite.
Constants.FTI2_RubiComposite The end of a rubi composite. FO_Rubi object.
End (0x80000008)
Constants.FTI2_InlineCompone The beginning of inline InlineComponent object.
ntBegin (0x80000010) component.
Constants.FTI2_InlineCompone The end of inline component. InlineComponent object.
ntEnd (0x80000020)
Returns
TextItems
Syntax
GetText2(flags, flags2)
Parameters
Data
Parameter name Type Optional Description
flags int No Denotes the various bit flags that specify the
items to be retrieved.
877
RUBI
CHAPTER 6 FUNCTION SUMMARY
Data
Parameter name Type Optional Description
flags2 int No Bit flags for the extended set of text item
types that specify the type of text items to
retrieve. To get specific types of text items
from the extended set, OR the constants that
represent them (for example, use a bitwise
OR to
combineConstants.FTI2_RubiTextBeg
in (0x80000001) and Constants.
FTI2_RubiTextEnd (0x80000002))
into flags2. To get all types of the extended
set of text items, specify -1.
GetProps
Description
Retrieves the properties of the rubi object.
See GetProps under the AFrame class for more information.
Returns
PropVals
Syntax
GetProps()
SetProps
Description
Sets the properties of the rubi object.
See SetProps under the AFrame class for more information.
Returns
Void
Syntax
SetProps(setVal)
878
RULINGFMT
CHAPTER 6 FUNCTION SUMMARY
Parameters
Data
Parameter name Type Optional Description
ObjectValid
Description
Returns 1 if the rubi object is valid, else returns 0.
See ObjectValid under the AFrame class for more information.
Returns
int
Syntax
ObjectValid()
RulingFmt
Delete
Description
Deletes a ruling format.
See Delete under the AFrame class for more information.
Returns
int
Syntax
Delete()
GetProps
Description
Retrieves the properties of the ruling format.
879
RULINGFMT
CHAPTER 6 FUNCTION SUMMARY
Returns
PropVals
Syntax
GetProps()
SetProps
Description
Sets the properties of the ruling format.
See SetProps under the AFrame class for more information.
Returns
Void
Syntax
SetProps(setVal)
Parameters
Data
Parameter name Type Optional Description
ObjectValid
Description
Returns 1 if the ruling format is valid, else returns 0.
See ObjectValid under the AFrame class for more information.
Returns
int
Syntax
ObjectValid()
880
STRINGS
CHAPTER 6 FUNCTION SUMMARY
Strings
An Array of objects with integer indexing and a length property.
concat
Description
The original array is unchanged. If an array is provided as a parameter to concat(), each of its elements
are appended as separate array elements at the end of the new array. Returns a new array, the result of
concatenation the given values to the end of the original array.
Returns
Strings
Syntax
concat(value)
Parameters
Data
Parameter name Type Optional Description
pop
Description
Removes the last element from the array.
Returns
string
Syntax
pop()
push
Description
Returns the new length of the array.
881
SUBCOL
CHAPTER 6 FUNCTION SUMMARY
Returns
number
Syntax
push(value)
Parameters
Data
Parameter name Type Optional Description
SubCol
Delete
Description
Deletes a subcol object.
See Delete under the AFrame class for more information.
Returns
int
Syntax
Delete()
GetText
Description
Gets the text from the subcol object.
See GetText under the Cell class for more information.
Returns
TextItems
Syntax
GetText(flags)
882
SUBCOL
CHAPTER 6 FUNCTION SUMMARY
Parameters
Data
Parameter name Type Optional Description
flags int No Denotes the various bit flags that specify the
items to be retrieved.
GetProps
Description
Retrieves the properties of the subcol object.
See GetProps under the AFrame class for more information.
Returns
PropVals
Syntax
GetProps()
SetProps
Description
Sets the properties of the subcol object.
See SetProps under the AFrame class for more information.
Returns
Void
Syntax
SetProps(setVal)
Parameters
Data
Parameter name Type Optional Description
883
TAB
CHAPTER 6 FUNCTION SUMMARY
ObjectValid
Description
Returns 1 if the subcol object is valid, else returns 0.
See ObjectValid under the AFrame class for more information.
Returns
int
Syntax
ObjectValid()
Tab
Tab
Description
Describes an individual tab. Note that the character specified by decimal must be a single byte char-
acter.
The type field can contain one of the following constants:
884
TABS
CHAPTER 6 FUNCTION SUMMARY
Returns
Tab
Syntax
Tab(x, type, leader, decimal)
Parameters
Data
Parameter name Type Optional Description
Tabs
An Array of Tab objects with integer indexing and a length property.
concat
Description
The original array is unchanged. If an array is provided as a parameter to concat(), each of its elements
are appended as separate array elements at the end of the new array. Returns a new array, the result of
concatenation the given values to the end of the original array.
Returns
Tabs
Syntax
concat(value)
885
TABS
CHAPTER 6 FUNCTION SUMMARY
Parameters
Data
Parameter name Type Optional Description
pop
Description
Removes the last element from the array.
Returns
Tab
Syntax
pop()
push
Description
Returns the new length of the array.
Returns
number
Syntax
push(value)
Parameters
Data
Parameter name Type Optional Description
value Tab No
886
TBL
CHAPTER 6 FUNCTION SUMMARY
Tbl
AddCols
Description
Adds columns to a table.
The method returns FE_Success on success.
On failure, the method sets FA_errno to one of the following values:
Error Reason
Returns
int
Syntax
AddCols(refColNum, direction, numNewCols)
Parameters
Data
Parameter name Type Optional Description
887
TBL
CHAPTER 6 FUNCTION SUMMARY
Data
Parameter name Type Optional Description
DeleteCols
Description
Deletes columns from a table. To delete an entire table, use Delete().
The method deletes the column specified by delColNum and (numDelCols-1) columns to the right of
it.
The method returns FE_Success on success.
On failure, the method sets FA_errno to one of the following values:
Error Reason
Returns
int
Syntax
DeleteCols(delColNum, numDelCols)
888
TBL
CHAPTER 6 FUNCTION SUMMARY
Parameters
Data
Parameter name Type Optional Description
DeleteRows
Description
Deletes rows from a table. Like the Delete command in the FrameMaker product user interface, Delete-
Rows() does not allow you to delete more than one type of row at time.
The range of rows you specify must be all body rows, all header rows, or all footer rows.
The method deletes refRow and (numDelRows - 1) rows below it.
The method returns FE_Success on success.
On failure, the method sets FA_errno to one of the following values:
Error Reason
Returns
int
Syntax
DeleteRows(refRow, numDelRows)
889
TBL
CHAPTER 6 FUNCTION SUMMARY
Parameters
Data
Parameter name Type Optional Description
GetTableColumnByColNum
Description
Get column object of a table based on the column number.
The method returns FE_Success on success.
On failure, the method sets FA_errno to one of the following values:
Error Reason
Returns
Column
Syntax
GetTableColumnByColNum (docId,tableId,colNum)
890
TBL
CHAPTER 6 FUNCTION SUMMARY
Parameters
Data
Parameter name Type Optional Description
MakeTblSelection
Description
Selects a range of cells in a table.
To select an entire table, including the table title, set the topRow parameter to
Constants.FF_SELECT_WHOLE_TABLE (0x80000000). MakeTblSelection() ignores the
values for the other parameters.
NOTE: MakeTblSelection()cannot select different types of rows at the same time, unless you set
topRow to Constants.FF_SELECT_WHOLE_TABLE (0x80000000) or you set topRow and
bottomRow to select one or more entire columns.
The method returns FE_Success on success.
On failure, the method sets FA_errno to one of the following values:
Error Reason
Returns
int
891
TBL
CHAPTER 6 FUNCTION SUMMARY
Syntax
MakeTblSelection(topRow, bottomRow, leftCol, rightCol)
Parameters
Data
Parameter name Type Optional Description
Delete
Description
Deletes the specified table.
See Delete under the AFrame class for more information.
Returns
int
Syntax
Delete()
GetProps
Description
The GetProps() method retrieves the properties of the specified table.
See GetProps under the AFrame class for more information.
892
TBL
CHAPTER 6 FUNCTION SUMMARY
Returns
PropVals
Syntax
GetProps()
SetProps
Description
The SetProps() method sets the properties of the specified table.
See SetProps under the AFrame class for more information.
Returns
Void
Syntax
SetProps(setVal)
Parameters
Data
Parameter name Type Optional Description
ObjectValid
Description
Returns 1 if the table is valid, else returns 0.
See ObjectValid under the AFrame class for more information.
Returns
int
Syntax
ObjectValid()
893
TBLFMT
CHAPTER 6 FUNCTION SUMMARY
TblFmt
The method uses an FO_TblFmt object to represent each table format in a document.
Delete
Deletes the specified table format.
See Delete under the AFrame class.
GetProps
See GetProps under the AFrame class.
SetProps
See SetProps under the AFrame class.
ObjectValid
See ObjectValid under the AFrame class.
TextFrame
Delete
Description
Deletes the specified text frame.
See Delete under the AFrame class for more information.
Returns
int
Syntax
Delete()
GetText
Description
Gets the text from the text frame.
894
TEXTFRAME
CHAPTER 6 FUNCTION SUMMARY
Returns
TextItems
Syntax
GetText(flags)
Parameters
Data
Parameter name Type Optional Description
flags int No Denotes the various bit flags that specify the
items to be retrieved.
GetProps
Description
The GetProps() method retrieves the properties of the specified text frame.
See GetProps under the AFrame class for more information.
Returns
PropVals
Syntax
GetProps()
SetProps
Description
The SetProps() method sets the properties of the specified text frame.
See SetProps under the AFrame class for more information.
Returns
Void
Syntax
SetProps(setVal)
895
TEXTITEMS
CHAPTER 6 FUNCTION SUMMARY
Parameters
Data
Parameter name Type Optional Description
ObjectValid
Description
Returns 1 if the text frame is valid, else returns 0.
See ObjectValid under the AFrame class for more information.
Returns
int
Syntax
ObjectValid()
TextItems
An Array of TextItem objects with integer indexing and a length property.
concat
Description
The original array is unchanged. If an array is provided as a parameter to concat(), each of its elements
are appended as separate array elements at the end of the new array. Returns a new array, the result of
concatenation the given values to the end of the original array.
Returns
TextItems
Syntax
concat(value)
896
TEXTITEMS
CHAPTER 6 FUNCTION SUMMARY
Parameters
Data
Parameter name Type Optional Description
pop
Description
Removes the last element from the array.
Returns
TextItem
Syntax
pop()
push
Description
Returns the new length of the array.
Returns
number
Syntax
push(value)
Parameters
Data
Parameter name Type Optional Description
897
TEXTLINE
CHAPTER 6 FUNCTION SUMMARY
TextLine
Delete
Description
Deletes the specified text line.
See Delete under the AFrame class for more information.
Returns
int
Syntax
Delete()
GetText
Description
Gets the text from the text line.
See GetText under the Cell class for more information.
Returns
TextItems
Syntax
GetText(flags)
Parameters
Data
Parameter name Type Optional Description
flags int No Denotes the various bit flags that specify the
items to be retrieved.
GetProps
Description
The GetProps() method retrieves the properties of the specified text line.
898
TEXTLINE
CHAPTER 6 FUNCTION SUMMARY
Returns
PropVals
Syntax
GetProps()
SetProps
Description
The SetProps() method sets the properties of the specified text line.
See SetProps under the AFrame class for more information.
Returns
Void
Syntax
SetProps(setVal)
Parameters
Data
Parameter name Type Optional Description
ObjectValid
Description
Returns 1 if the text line is valid, else returns 0.
See ObjectValid under the AFrame class for more information.
Returns
int
Syntax
ObjectValid()
899
TEXTLOC
CHAPTER 6 FUNCTION SUMMARY
TextLoc
TextLoc
Description
TextLoc specifies a location within the text of a paragraph or a graphic text line.
Returns
TextLoc
Syntax
TextLoc(obj, offset)
Parameters
Data
Parameter name Type Optional Description
TextRange
TextRange
Description
TextRange specifies a text range. A text range can span paragraphs. However, it cannot span graphic text
lines or flows.
NOTE: beg.offset and end.offset fields of aTextRange object can specify offsets relative to the
beginning and end of an object. In addition, they can use the special value Constants.FV_OB-
J_END_OFFSET (0x50000000). NOTE: Constants.FV_OBJ_END_OFFSET (0x50000000) specifies the offset of
the last character in the object containing the text range.
Returns
TextRange
Syntax
TextRange(beg, end)
900
TIAPICLIENT
CHAPTER 6 FUNCTION SUMMARY
Parameters
Data
Parameter name Type Optional Description
TiApiClient
An FO_TiApiClient object represents text imported by an FDK client.
GetText
See GetText under the Cell class.
GetProps
See GetProps under the AFrame class.
SetProps
See SetProps under the AFrame class.
ObjectValid
See ObjectValidunder the AFrame class.
DeleteTextInsetContents
Description
This method deletes the text in a text inset. You must unlock a text inset before you call this function to
delete its contents. After you are done, you must relock the text inset.
Call this method on the text inset for which you want to delete the contents.
If this method fails, the method assigns one of the following values to FA_errno.
Error Meaning
901
TIAPICLIENT
CHAPTER 6 FUNCTION SUMMARY
Error Meaning
Constants.FE_BadDocId (-2) Invalid document ID
Constants.FE_BadObjId (-3) Invalid object ID
Constants.FE_BadSelectionForOperati The specified text inset is locked
on (-59)
Returns
int
Syntax
DeleteTextInsetContents()
UpdateTextInset
Description
Updates the contents of a stale text inset. It determines whether an inset is stale by comparing the inset’s
LastUpdate property with the modification date of the inset’s source file. UpdateTextInset()
does not update a text inset unless it is stale. To make a text inset stale, set its LastUpdate property to
0. UpdateTextInset() does not update graphic insets (FO_Inset objects).
Call this method on the text inset to be updated.
This method returns FE_Success if it succeeds or FE_SomeUnresolved if some text insets were
unresolved. If UpdateTextInset() fails, it assigns one of the following values to FA_errno.
Error Meaning
Constants.FE_BadDocId Invalid document ID
(-2)
Constants.FE_BadFileTy The inset specifies a file that does not match the import type (for
pe (-83) example, the inset imports a binary document but the file is a text
file or doesn’t exist)
Constants.FE_SomeUnres Some text insets were unresolved
olved (-22)
Constants.FE_WrongProd Product doesn’t support the specified operation
uct (-60)
Constants.FE_SystemErr Couldn’t allocate memory
or (-42)
902
TIAPICLIENT
CHAPTER 6 FUNCTION SUMMARY
Returns
int
Syntax
UpdateTextInset()
ConvertToText
Description
This method is called upon a text inset (Examples: TiApiClient(), TiFlow(), TiText(),
TiTextTable()) object and converts it to a text. This method deletes the text inset and removes the
locked text range around it without modifying the content.
Returns
Void
Syntax
ConvertToText()
Delete
See Delete under the AFrame class.
DeletePropByName
Description
Deletes an inset facet. Except for inset facets, all properties are identified by integer constants. Facets
are the only properties identified by name.
If DeletePropByName() fails, the method assigns one of the following values to FA_errno:
Error Meaning
Constants.FE_BadPropNum Specified property number is invalid
(-4)
Constants.FE_BadDocId Invalid document ID
(-2)
Constants.FE_BadObjId(- Invalid object ID
3)
903
TIFLOW
CHAPTER 6 FUNCTION SUMMARY
Error Meaning
Returns
Void
Syntax
DeletePropByName(propName)
Parameters
Data
Parameter name Type Optional Description
TiFlow
An FO_TiFlow object represents text imported from a FrameMaker document or a MIF file.
GetText
See GetText under the Cell class.
GetProps
See GetProps under the AFrame class.
SetProps
See SetProps under the AFrame class.
ObjectValid
See ObjectValid under the AFrame class.
DeleteTextInsetContents
See DeleteTextInsetContents under the TiApiClient class.
904
TITEXT
CHAPTER 6 FUNCTION SUMMARY
UpdateTextInset
See UpdateTextInset under the TiApiClient class.
ConvertToText
Description
This method is called upon a text inset (Examples: TiApiClient, TiFlow, TiText, TiTextTable)
object and converts it to a text. This method deletes the text inset and removes the locked text range
around it without modifying the content.
Returns
Void
Syntax
ConvertToText()
Delete
See Delete under the AFrame class.
DeletePropByName
See DeletePropByName under the TiApiClient.
TiText
An FO_TiText object represents text imported from a text file.
GetText
See GetText under the Cell class.
GetProps
See GetProps under the AFrame class.
SetProps
See SetPropsunder the AFrame class.
905
TITEXTTABLE
CHAPTER 6 FUNCTION SUMMARY
ObjectValid
See ObjectValidunder the AFrame class.
DeleteTextInsetContents
See DeleteTextInsetContents under the TiApiClient class.
UpdateTextInset
See UpdateTextInset under the TiApiClient class.
ConvertToText
Description
This method is called upon a text inset (Examples: TiApiClient, TiFlow, TiText, TiTextTable)
object and converts it to a text. This method deletes the text inset and removes the locked text range
around it without modifying the content.
Returns
Void
Syntax
ConvertToText()
Delete
See Delete under the AFrame class.
DeletePropByName
See DeletePropByName under the TiApiClient class.
TiTextTable
An FO_TiTextTable object represents text imported from a text file into a table.
GetText
See GetText under the Cell class.
906
TITEXTTABLE
CHAPTER 6 FUNCTION SUMMARY
GetProps
See GetProps under the AFrame class.
SetProps
See SetProps under the AFrame class.
ObjectValid
See ObjectValid under the AFrame class.
DeleteTextInsetContents
See DeleteTextInsetContents under the TiApiClient class.
UpdateTextInset
See UpdateTextInset under the TiApiClient class.
ConvertToText
Description
This method is called upon a text inset (Examples: TiApiClient, TiFlow, TiText, TiTextTable)
object and converts it to a text. This method deletes the text inset and removes the locked text range
around it without modifying the content.
Returns
Void
Syntax
ConvertToText()
Delete
See Delete under the AFrame class.
DeletePropByName
See DeletePropByName under the TiApiClient.
907
TYPEDVALS
CHAPTER 6 FUNCTION SUMMARY
TypedVals
An Array of TypedVal objects with integer indexing and a length property.
concat
Description
The original array is unchanged. If an array is provided as a parameter to concat(), each of its elements
are appended as separate array elements at the end of the new array. Returns a new array, the result of
concatenation the given values to the end of the original array.
Returns
TypedVal
Syntax
concat(value)
Parameters
Data
Parameter name Type Optional Description
pop
Description
Removes the last element from the array.
Returns
TypedVal
Syntax
pop()
push
Description
Returns the new length of the array.
908
UBYTES
CHAPTER 6 FUNCTION SUMMARY
Returns
number
Syntax
push(value)
Parameters
Data
Parameter name Type Optional Description
UBytes
An Array of objects with integer indexing and a length property.
concat
Description
The original array is unchanged. If an array is provided as a parameter to concat(), each of its elements
are appended as separate array elements at the end of the new array. Returns a new array, the result of
concatenation the given values to the end of the original array.
Returns
UBytes
Syntax
concat(value)
Parameters
Data
Parameter name Type Optional Description
909
UINTS
CHAPTER 6 FUNCTION SUMMARY
pop
Description
Removes the last element from the array.
Returns
uint
Syntax
pop()
push
Description
Returns the new length of the array.
Returns
number
Syntax
push(value)
Parameters
Data
Parameter name Type Optional Description
UInts
An Array of objects with integer indexing and a length property.
concat
Description
The original array is unchanged. If an array is provided as a parameter to concat(), each of its elements
are appended as separate array elements at the end of the new array. Returns a new array, the result of
concatenation the given values to the end of the original array.
910
UINTS
CHAPTER 6 FUNCTION SUMMARY
Returns
UInts
Syntax
concat(value)
Parameters
Data
Parameter name Type Optional Description
pop
Description
Removes the last element from the array.
Returns
uint
Syntax
pop()
push
Description
Returns the new length of the array.
Returns
number
Syntax
push(value)
911
UNANCHOREDFRAME
CHAPTER 6 FUNCTION SUMMARY
Parameters
Data
Parameter name Type Optional Description
UnanchoredFrame
Delete
Description
Deletes the specified unanchored frame.
See Delete under the AFrame class for more information.
Returns
int
Syntax
Delete()
GetProps
Description
The GetProps() method retrieves the properties of the specified unanchored frame.
See GetProps under the AFrame class for more information.
Returns
PropVals
Syntax
GetProps()
SetProps
Description
The SetProps() method sets the properties of the specified unanchored frame.
912
VAR
CHAPTER 6 FUNCTION SUMMARY
Returns
Void
Syntax
SetProps(setVal)
Parameters
Data
Parameter name Type Optional Description
ObjectValid
Description
Returns 1 if the unanchored frame is valid, else returns 0.
See ObjectValid under the AFrame class for more information.
Returns
int
Syntax
ObjectValid()
Var
Delete
Description
Deletes the specified var object.
See Delete under the AFrame class for more information.
Returns
int
913
VAR
CHAPTER 6 FUNCTION SUMMARY
Syntax
Delete()
GetText
Description
Gets the text from the var object.
See GetText under the Cell class for more information.
Returns
TextItems
Syntax
GetText(flags)
Parameters
Data
Parameter name Type Optional Description
flags int No Denotes the various bit flags that specify the
items to be retrieved.
GetProps
Description
The GetProps() method retrieves the properties of the specified var object.
See GetProps under the AFrame class for more information.
Returns
PropVals
Syntax
GetProps()
SetProps
Description
The SetProps() method sets the properties of the specified var object.
914
VARFMT
CHAPTER 6 FUNCTION SUMMARY
Returns
Void
Syntax
SetProps(setVal)
Parameters
Data
Parameter name Type Optional Description
ObjectValid
Description
Returns 1 if the var object is valid, else returns 0.
See ObjectValid under the AFrame class for more information.
Returns
int
Syntax
ObjectValid()
VarFmt
Delete
Description
Deletes the specified varfmt object.
See Delete under the AFrame class for more information.
Returns
int
915
VARFMT
CHAPTER 6 FUNCTION SUMMARY
Syntax
Delete()
GetProps
Description
The GetProps() method retrieves the properties of the specified varfmt object.
See GetProps under the AFrame class for more information.
Returns
PropVals
Syntax
GetProps()
SetProps
Description
The SetProps() method sets the properties of the specified var object.
See SetProps under the AFrame class for more information.
Returns
Void
Syntax
SetProps(setVal)
Parameters
Data
Parameter name Type Optional Description
ObjectValid
Description
Returns 1 if the varfmt object is valid, else returns 0.
916
XREF
CHAPTER 6 FUNCTION SUMMARY
Returns
int
Syntax
ObjectValid()
XRef
Delete
Description
Deletes the specified XRef object.
See Delete under the AFrame class for more information.
Returns
int
Syntax
Delete()
GetText
Description
Gets the text from the XRef object.
See GetText under the Cell class for more information.
Returns
TextItems
Syntax
GetText(flags)
917
XREF
CHAPTER 6 FUNCTION SUMMARY
Parameters
Data
Parameter name Type Optional Description
flags int No Denotes the various bit flags that specify the
items to be retrieved.
GetProps
Description
The GetProps() method retrieves the properties of the specified XRef object.
See GetProps under the AFrame class for more information.
Returns
PropVals
Syntax
GetProps()
SetProps
Description
The SetProps() method sets the properties of the specified XRef object.
See SetProps under the AFrame class for more information.
Returns
Void
Syntax
SetProps(setVal)
Parameters
Data
Parameter name Type Optional Description
918
XREFFMT
CHAPTER 6 FUNCTION SUMMARY
ObjectValid
Description
Returns 1 if the xref object is valid, else returns 0.
See ObjectValid under the AFrame class for more information.
Returns
int
Syntax
ObjectValid()
XRefFmt
Delete
Description
Deletes the specified XRefFmt object.
See Delete under the AFrame class for more information.
Returns
int
Syntax
Delete()
GetProps
Description
The GetProps() method retrieves the properties of the specified XRefFmt object.
See GetProps under the AFrame class for more information.
Returns
PropVals
Syntax
GetProps()
919
APP
CHAPTER 6 FUNCTION SUMMARY
SetProps
Description
The SetProps() method sets the properties of the specified XRefFmt object.
See SetProps under the AFrame class for more information.
Returns
Void
Syntax
SetProps(setVal)
Parameters
Data
Parameter name Type Optional Description
ObjectValid
Description
Returns 1 if the XRefFmt object is valid, else returns 0.
See ObjectValid under the AFrame class for more information.
Returns
int
Syntax
ObjectValid()
app
Close
See Close under the Book class.
920
APP
CHAPTER 6 FUNCTION SUMMARY
GetNamedObject
Description
Gets the object with a specified name (Name property) and object type.
If an error occurs, this method returns the the object, or 0. If this method fails, the method assigns one
of the following values to FA_errno:
Error Meaning
Returns
Object
Syntax
GetNamedObject(objType, name)
Parameters
Data
Parameter name Type Optional Description
GetNamedBook
Description
Gets the book object with a specified name.
If this method fails, the method assigns the following value to FA_errno.
921
APP
CHAPTER 6 FUNCTION SUMMARY
Error Meaning
Constants.FE_NameNotFound The book with the specified name does not exist.
(-20)
Returns
Book
Syntax
GetNamedBook(name)
Parameters
Data
Parameter name Type Optional Description
name string No The name of the book object you want to get.
GetNamedCommand
Description
Gets aFO_command object with the specified command string.
If this method fails, the method assigns the following value to FA_errno.
Error Meaning
Constants.FE_NameNotFound The object with the specified name does not exist.
(-20)
Returns
Command
Syntax
GetNamedCommand(name)
922
APP
CHAPTER 6 FUNCTION SUMMARY
Parameters
Data
Parameter name Type Optional Description
GetNamedMenu
Description
Gets a menu object with the specified menu string.
If this method fails, the method assigns the following value to FA_errno.
Error Meaning
Returns
Menu
Syntax
GetNamedMenu(name)
Parameters
Data
Parameter name Type Optional Description
GetNamedMenuItemSeparator
Description
Gets a menu item separator object with the specified menu item separator string.
If this method fails, the method assigns the following value to FA_errno.
923
APP
CHAPTER 6 FUNCTION SUMMARY
Error Meaning
Constants.FE_NameNotFound A menu item separator with the specified name does not exist.
(-20)
Returns
MenuItemSeparator
Syntax
GetNamedMenuItemSeparator(name)
Parameters
Data
Parameter name Type Optional Description
NewNamedObject
Description
Creates a new objects and returns it.
If this method fails, the method assigns one of the following values to FA_errno.
Error Meaning
FE_BadName(-33) Specified name for the new object is invalid.
FE_BadNew (-23) Object cannot be created.
FE_DupName(-32) Specified name for the new object belongs to an existing object.
Returns
Object
Syntax
NewNamedObject(objType, name)
924
APP
CHAPTER 6 FUNCTION SUMMARY
Parameters
Data
Parameter name Type Optional Description
NewNamedBook
Description
Creates a new book objects and returns it.
If this method fails, the method assigns one of the following values to FA_errno.
Error Meaning
Returns
Book
Syntax
NewNamedBook(name)
Parameters
Data
Parameter name Type Optional Description
NewNamedCommand
Description
Creates a new command object and returns it
If this method fails, the method assigns one of the following values to FA_errno.
925
APP
CHAPTER 6 FUNCTION SUMMARY
Error Meaning
Returns
Command
Syntax
NewNamedCommand(name)
Parameters
Data
Parameter name Type Optional Description
NewNamedMenu
Description
Creates a menu object with the specified name and returns it
If this method fails, the method assigns one of the following values to FA_errno.
Error Meaning
Returns
Menu
Syntax
NewNamedMenu(name)
926
APP
CHAPTER 6 FUNCTION SUMMARY
Parameters
Data
Parameter name Type Optional Description
NewNamedMenuItemSeparator
Description
Creates a new menu item separator with the specified name and returns it
If this method fails, the method assigns one of the following values to FA_errno.
Error Meaning
Returns
MenuItemSeparator
Syntax
NewNamedMenuItemSeparator(name)
Parameters
Data
Parameter name Type Optional Description
GetProps
See GetProps under the AFrame class.
927
GLOBAL
CHAPTER 6 FUNCTION SUMMARY
SetProps
See SetProps under the AFrame class.
ObjectValid
See ObjectValid under the AFrame class.
global
Alert
Description
Displays an alert box with a message. Depending on the constant you specify for the type parameter,
the alert displays either the OK and Cancel buttons, Yes and No buttons, or a Continue button.
The type parameter takes one of the following values:
Constant Value
Returns
int
928
GLOBAL
CHAPTER 6 FUNCTION SUMMARY
Syntax
Alert(message, type)
Parameters
Data
Parameter name Type Optional Description
Alive
Description
Checks whether the current asynchronous client has a connection with a FrameMaker process. Call this
method after registering the asynchronous client using WinConnectSession().
The method returns a positive integer if there is a current connection to a FrameMaker process. Other-
wise it returns 0.
Returns
int
Syntax
Alive()
CallClient
Description
Allows a client to call another client. The method is useful for calling FrameMaker clients, such as the
structure generator and the element catalog manager.
On success, the method returns FE_Success or the value specified by the target client’s last call to
ReturnValue().
NOTE: Calls to the structure generator always return FE_Success no matter what string is passed to it as
an argument.
On failure, the method assigns the following value to FA_errno:
929
GLOBAL
CHAPTER 6 FUNCTION SUMMARY
Error Reason
Constants.FE_NameNotFoun There is no client with the specified name in the current FrameMaker
d (-20) productsession.
Constants.FE_BadParameter For the TableSort client only: One of the arguments is invalid. For
(-43) example, you gave a value for the sort key that is greater than the
number of columns or rows in the current table selection, or you
have no table cells selected.
Returns
int
Syntax
CallClient(clname, arg)
Parameters
Data
Parameter name Type Optional Description
930
GLOBAL
CHAPTER 6 FUNCTION SUMMARY
xts Fully qualified path to XTS file (XTS - XLIFF Translation Settings).
NOTE: XTS settings for MIF can be configured through the XLIFF Export
dialog.
lang Source language code in ISO format, such as en-US.
out Fully qualified output file name, which is a .zip file.
Returns
0
Success
-1 to -9
Process cancelled due to missing or wrong parameters.
-10
Errors occurred during the conversion process.
Sample code:
var XLIFFCLIENTNAME="XLIFF-Client";
ExportXliff() ;
ExportXliff = function()
{
var inFile = new File().openDlg ("select input file", "All files:*.*",
false);
if (inFile == null)
return ;
var outFile = new File(inFile.fsName + ".zip").saveDlg("select output
file", "ZIP Files:*.zip");
if (outFile == null)
return ;
var xtsFile = new File(app.HomeDir +
"\\Translation\\XLIFF\\config\\default.xts").openDlg("select XTS file",
"XTS file:*.xts", false);
if (xtsFile == null)
return ;
var sourceLang = "en-US";
var cmd = "action=xliffexport;";
cmd += "src=" + inFile.fsName+ ";";
cmd += "xts=" + xtsFile.fsName + ";";
cmd += "lang=" + sourceLang + ";";
cmd += "out=" + outFile.fsName + ";";
var result = CallClient (XLIFFCLIENTNAME, cmd);
if (result == 0)
{
931
GLOBAL
CHAPTER 6 FUNCTION SUMMARY
$.writeln("Success");
}
else if (result < 0 && result > -10)
{
$.writeln("parameter errors. process cancelled");
}
else if (result <= -10)
{
$.writeln("conversion errors occurs. Check log file");
}
}
Returns
0
Success
-1 to -9
Process cancelled due to missing or wrong parameters.
-10
Errors occurred during conversion process.
Sample code:
var XLIFFCLIENTNAME="XLIFF-Client";
ImportXliff();
ImportXliff = function()
932
GLOBAL
CHAPTER 6 FUNCTION SUMMARY
{
//Select source file (.book; .fm; .dita; .ditamap; .xml)
var inFile = new File().openDlg ("select XLIFF ZIP file", "ZIP
Files:*.zip", false);
if (inFile == null)
return ;
//!!!!!!!!!!! CAUTION !!!!!!!!!!!!!!!!
//!!!!!select empty directory, otherwise FILES may be overwritten!!!!!
var ouDirectory = new Folder(inFile.parent).selectDlg("select output
directory");
if (ouDirectory == null)
return ;
var cmd = "action=xliffimport;";
cmd += "src=" + inFile.fsName+ ";";
cmd += "out=" + ouDirectory.fsName + ";";
var result = CallClient (XLIFFCLIENTNAME, cmd);
if (result == 0)
{
$.writeln("Success");
}
else if (result < 0 && result > -10)
{
$.writeln("parameter errors. process cancelled");
}
else if (result <= -10)
{
$.writeln("conversion errors occurs. Check log file");
}
}
CallClientEx
Description
Allows a client to call another client. The method is useful for calling FrameMaker clients, such as the
structure generator and the element catalog manager.
On success, the method returns FE_Success or the value specified by the target client’s last call to
ReturnValue().
NOTE: Calls to the structure generator always return FE_Success no matter what string is passed to it as
an argument.
On failure, the method assigns the following value to FA_errno:
Error Reason
Constants.FE_NameNotFoun There is no client with the specified name in the current FrameMaker
d (-20) productsession.
933
GLOBAL
CHAPTER 6 FUNCTION SUMMARY
Error Reason
Constants.FE_BadParameter For the TableSort client only: One of the arguments is invalid. For
(-43) example, you gave a value for the sort key that is greater than the
number of columns or rows in the current table selection, or you
have no table cells selected.
Returns
TypedVal
Syntax
CallClientEx(clname, arg)
Parameters
Data
Parameter name Type Optional Description
CheckStatus
Description
Checks the scripts returned by Open(), Import(), Save(), and UpdateBook() to determine if a
specified status bit is set.
Returns 1 if the bit is set, else returns 0.
Returns
int
Syntax
CheckStatus(p, statusBit)
934
GLOBAL
CHAPTER 6 FUNCTION SUMMARY
Parameters
Data
Parameter name Type Optional Description
ClientDir
Description
Returns the name of the current ESTK client’s directory.
NOTE: Use Free() to free the string returned by ClientDir() when you are done with it.
Error Reason
Returns
string
Syntax
ClientDir()
ClientName
Description
Returns the registered name of the current client (the client that calls ClientName()).
NOTE: Use Free() to free the string returned by ClientDir() when you are done with it.
Error Reason
935
GLOBAL
CHAPTER 6 FUNCTION SUMMARY
Returns
string
Syntax
ClientName(_)
CMSRegister
Description
Registers a CMS client.
Returns
CMS Object
Syntax
CMSRegister (cmsName);
Parameters
Data
Parameter name Type Optional Description
Error Reason
CMSGetCmsIdFromName
Description
Gets the CMS registration id from CMS name.
Returns
CMS Object
936
GLOBAL
CHAPTER 6 FUNCTION SUMMARY
Syntax
CMSGetCmsIdFromName (cmsName);
Parameters
Data
Parameter name Type Optional Description
Error Reason
CMSAddMenuEntry
Description
Adds a custom menu entry in the context menu within the FrameMaker interface.
Returns
CMS Object
Syntax
CMSAddMenuEntry (menuId,menuEntryp);
Parameters
Data
Parameter name Type Optional Description
937
GLOBAL
CHAPTER 6 FUNCTION SUMMARY
Error Reason
CustomDoc
Description
Creates a new custom document using the FrameMaker product’s default new document template.
The sidedness parameter can have one of the following values:
Error Reason
Returns
Doc
Syntax
CustomDoc(width, height, numCols, columnGap, topMargin, botMargin,
leftinsideMargin, rightoutsideMargin, sidedness, makeVisible)
938
GLOBAL
CHAPTER 6 FUNCTION SUMMARY
Parameters
Data
Parameter name Type Optional Description
DefineMenu
Description
Defines a menu (FO_Menu object). After you define a menu, you can add it to a menu or a menu bar with
AddMenuToMenu().
If you call DefineMenu() and specify the name of a menu that is already defined in the user’s menu
configuration files, the FrameMaker product gives precedence to the definition in the configuration files.
If the configuration files assign a label to the menu, the FrameMaker product uses it instead of the one
you specify.If the user has already defined a menu with the name specified by name, DefineMenu()
ignores the label parameter and uses the label specified by the user.
The method returns the new menu on success.
On failure, the method sets FA_errno to one of the following values:
939
GLOBAL
CHAPTER 6 FUNCTION SUMMARY
Error Reason
Returns
Menu
Syntax
DefineMenu(name, label)
Parameters
Data
Parameter name Type Optional Description
DisconnectFromSession
Description
Ends communication with a FrameMaker product process.
The method returns FE_Success if it succeeds, or a system error code if an error occurs.
940
GLOBAL
CHAPTER 6 FUNCTION SUMMARY
Returns
int
Syntax
DisconnectFromSession()
Err
Description
Prints the client’s name and a message to the console.
Returns
Void
Syntax
Err(message)
Parameters
Data
Parameter name Type Optional Description
FamilyFonts
Description
Returns a Fonts object with the permutations of angles, variations, and weights available for a specified
font family.
Returns
Fonts
Syntax
FamilyFonts(family)
941
GLOBAL
CHAPTER 6 FUNCTION SUMMARY
Parameters
Data
Parameter name Type Optional Description
family int No The index of the font family (in the list of
fonts in the session).
GetKeyCatalog
Description
Finds a key catalog with the specified 'tag'.
Returns
KeyCatalog
Syntax
GetKeyCatalog(tag);
Parameters
Data
Parameter name Type Optional Description
tag string No The tag of the new Key Catalog being created.
Error Reason
Constants.FE_BadName The tag provided is not valid or the key catalog with this tag does not
exist.
GetEncodingForFamily
Description
Returns the encoding that FrameMaker uses for the font family.
Returns one of the following strings indicating the encoding for the font:
942
GLOBAL
CHAPTER 6 FUNCTION SUMMARY
Value Meaning
If the returned string is Multiple, the font family includes variations that are represented by different
encodings. You should use ApiFamilyFonts() to get a list of the variations for the family. Then you
can use GetEncodingForFont() to get the encoding for a specific variation.
Returns
string
Syntax
GetEncodingForFamily(family)
Parameters
Data
Parameter name Type Optional Description
GetEncodingForFont
Description
Returns the encoding that FrameMaker uses for a specific font with a specific combination of weight,
angle, and variation.
Returns one of the following strings indicating the encoding for the font:
Value Meaning
943
GLOBAL
CHAPTER 6 FUNCTION SUMMARY
Value Meaning
Returns
string
Syntax
GetEncodingForFont(font)
Parameters
Data
Parameter name Type Optional Description
font Font No
GetImportDefaultParams
Description
Gets a default property list that you can use to call Import().
The method returns a PropVals structure containing the properties retreived.
For more information see Import.
Returns
PropVals
Syntax
GetImportDefaultParams()
GetOpenDefaultParams
Description
Gets a default property list that you can use to call Open().
944
GLOBAL
CHAPTER 6 FUNCTION SUMMARY
Returns
PropVals
Syntax
GetOpenDefaultParams()
GetPropIndex
Description
Gets the index of a property-value pair (PropVal structure) within a property list. GetPropIndex() is a
convenience routine that makes it easier to manipulate the properties in a property list.
The method returns the index (in the property list) of the property’s PropVal structure, or
Constants.FE_BadPropNum (-4) if an error occurs.
Returns
int
Syntax
GetPropIndex(propVals, propNum)
Parameters
Data
Parameter name Type Optional Description
GetSaveDefaultParams
Description
Gets a default property list that you can use to call Save().
On success, the method returns a PropVals list as shown in the following table.
The first value listed next to each property is the value that GetSaveDefaultParams() assigns to the
property. The other values are values that you can assign to the property as desired.
945
GLOBAL
CHAPTER 6 FUNCTION SUMMARY
Property Values
946
GLOBAL
CHAPTER 6 FUNCTION SUMMARY
Property Values
FileType Specifies the type of file to save to. This file type must be
one that FrameMaker saves natively. Note that HTML
and XML are saved via filters, and so you must specify a
filter hint string via Constants.FS_SaveFileTypeHint(16).
The value is one of:
• Contants.FV_SaveFmtBinary(0) - Save in Frame
binary format for this version of FrameMaker.
Constants.FV_SaveFmtBinary60(11) - Save in binary
format for FrameMaker 6.0.
Constants.FV_SaveFmtInterchange(1) - Save as
MIF.
Constants.FV_SaveFmtSgml(7) - Save in SGML for-
mat.
Constants.FV_SaveFmtText(6) - Save in Text Only
format.
Constants.FV_SaveFmtXml(10) - Save in XML for-
mat.
Constants.FV_SaveFmtPdf(9) - Save as PostScript,
and then invoke Acrobat Distiller to create a PDF
version of the document. This is the same as choos-
ing PDF from the Format popup menu in the Save As
dialog box.
Constants.FV_SaveFmtFilter(8) - Filter on save, us-
ing
Constants.FS_SaveFileTypeHint(16)to
determine the filter.
FileIsInUse Another user or session is recorded in the file’s lock file.
The value is one of:
• Constants.FV_DoCancel(0) - Cancel the Save opera-
tion.
Constants.FV_DoShowDialog(4) - Display the File In
Use dialog box.
Constants.FV_ResetLockAndContinue(7) - Attempt
to reset the file lock and save the document.
947
GLOBAL
CHAPTER 6 FUNCTION SUMMARY
Property Values
LockCantBeReset The user clicked Save Anyway in the File In Use dialog
box, or the value of Constants.FS_FileInUse is set
to Constants.FV_ResetLockAndContinue(7),
but the lock file cannot be reset. This is usually due to
permissions in the lock file.
The value is one of:
• Constants.FV_DoCancel(0) - Cancel the Save opera-
tion.
Constants.FV_DoShowDialog(4) - Display the Can-
not Lock File dialog box.
Constants.FV_DoOK(1) - Save the document any-
way.
ModDateChanged The file has changed since the last time it was opened or
saved in the current session. Somebody else has
probably modified the file.
The value is one of:
• Constants.FV_DoCancel(0) - Cancel the Save opera-
tion.
Constants.FV_DoShowDialog(4) - Display the File
Has Changed alert box.
Constants.FV_DoOK(1) - Save the document any-
way.
SaveFileNotWritable The file permissions will not allow the file to be saved.
The value is one of:
• Constants.FV_DoCancel(0) - Cancel the Save opera-
tion.
Constants.FV_DoShowDialog(4) - Display the Can-
not Lock FIle alert box.
SaveFileTypeHint If Constants.FS_FileType is
Constants.FV_SaveFmtFilter(8), this string enables the
FrameMaker product to call the correct filter.For
example, use 0001ADBEHTML to save as HTML or
0001ADBEXML to save as XML.
948
GLOBAL
CHAPTER 6 FUNCTION SUMMARY
Property Values
949
GLOBAL
CHAPTER 6 FUNCTION SUMMARY
Property Values
950
GLOBAL
CHAPTER 6 FUNCTION SUMMARY
Property Values
UpdateFRVList Specifies whether the file will be added to the list of files
recently visited that appears in the File menu. This is set
toc False by default.
The value is one of :
• False - Do not add the file to the list.
True - Add the file to the list.
On failure, the method sets the len field of the returned structure to 0.
Returns
PropVals
Syntax
GetSaveDefaultParams()
GetSupportedEncodings
Description
Returns the font encodings supported for the current session.
The following strings indicate the encoding for fonts:
Value Meaning
Returns
Strings
Syntax
GetSupportedEncodings()
951
GLOBAL
CHAPTER 6 FUNCTION SUMMARY
GetUpdateBookDefaultParams
Description
Gets a default property list that you can use to call UpdateBook().
Returns
PropVals
Syntax
GetUpdateBookDefaultParams()
GetNewXMLDefaultParams
Description
Generates default open-parameters for NewXML().
Returns
PropVals
Syntax
GetNewXMLDefaultParams();
A property list (PropVals) with the properties shown in the following table.
952
GLOBAL
CHAPTER 6 FUNCTION SUMMARY
IsEncodingSupported
Description
Checks whether the specified encoding is supported for the current session. For example, unless
FrameMaker is running on a system that supports Japanese text, Japanese encoding is not supported.
The encodingName parameter can be set to one of the following values:
Value Meaning
Returns True if the specified encoding is supported for the current session, else returns False.
Returns
bool
Syntax
IsEncodingSupported(encodingName)
Parameters
Data
Parameter name Type Optional Description
encodingName string No The encoding that you want to test.
LoadMenuCustomizationFile
Description
Loads a menu customization file.
A menu customization file is a text file containing statements that change the menus and commands the
user sees in FrameMaker. For example, a menu customization file can change the name of a command
or move a command from one menu to another.
The method returns FE_Success on success.
953
GLOBAL
CHAPTER 6 FUNCTION SUMMARY
Error Reason
Returns
Void
Syntax
LoadMenuCustomizationFile(pathname, silent)
Parameters
Data
Parameter name Type Optional Description
954
GLOBAL
CHAPTER 6 FUNCTION SUMMARY
NewKeyCatalog
Description
Creates a new key catalog with the specified 'tag'.
Returns
KeyCatalog
Syntax
NewKeyCatalog(tag);
Parameters
Data
Parameter name Type Optional Description
tag string No The tag of the new Key Catalog being created.
Error Reason
NewXML
Description
Creates a new, untitled XML.
Returns
Doc
Syntax
ApiNewXML(opennewXMLParams, newXMLReturnParams);
955
GLOBAL
CHAPTER 6 FUNCTION SUMMARY
Parameters
Data
Parameter name Type Optional Description
To get a property list to specify for the newXMLParams parameter, use GetNewXMLDefaultParams.
Notification
Description
Requests that the FrameMaker product notify your client whenever a specified event, or stage of an
event, occurs.
NOTE: If FrameMaker encounters an internal error and exits, it does not send any notification to your client
about operations performed after the error occured. For example, after an error, FrameMaker allows the
user to save changes in open documents, but it does not notify any clients of the save operations.
Many events have several notification points or stages for which you can request notification.The
following table lists the notification points and the constants that specify them:
956
GLOBAL
CHAPTER 6 FUNCTION SUMMARY
957
GLOBAL
CHAPTER 6 FUNCTION SUMMARY
958
GLOBAL
CHAPTER 6 FUNCTION SUMMARY
959
GLOBAL
CHAPTER 6 FUNCTION SUMMARY
960
GLOBAL
CHAPTER 6 FUNCTION SUMMARY
961
GLOBAL
CHAPTER 6 FUNCTION SUMMARY
The notification constants are numbered sequentially, starting with 0. The method provides a constant,
Constants.FA_Note_Num (128), that specifies the total number of notifications. This makes it easy
to request notification for all notification points.
The method returns FE_Success on success. On failure, the method sets FA_errno to one of the
following values:
962
GLOBAL
CHAPTER 6 FUNCTION SUMMARY
Error Reason
Returns
int
Syntax
Notification(notification, state)
Parameters
Data
Parameter name Type Optional Description
PopClipboard
Description
Pops the Clipboard stack, moving the entry on the top of the stack to the Clipboard.
The method returns FE_Success on success. On failure, the method sets FA_errno to one of the
following values:
Error Reason
Returns
int
963
GLOBAL
CHAPTER 6 FUNCTION SUMMARY
Syntax
PopClipboard()
Parameters
Data
Parameter name Type Optional Description
_ Void No NULL
PrintFAErrno
Description
Prints the current error status, represented by the global variable, FA_errno. The method is useful for
debugging clients.
When a method fails, it stores an error code in the global variable, FA_errno.
FA_errno retains the error code until another function fails and sets it or until your code explicitly sets
it.
To determine whether a method call has failed, initialize FA_errno to FE_Success once before calling
the method and check it once after the method call is completed.For example, if you call the
Notification()method and specify an invalid notification constant, the method sets FA_errno to
Constants.FE_BadNotificationNum (-30). If you subsequently call PrintFAErrno(), it
prints the string FE_BadNotificationNum.
On failure, PrintFAErrno() assigns the following value to FA_errno:
Error Reason
Returns
Void
Syntax
PrintFAErrno(_)
964
GLOBAL
CHAPTER 6 FUNCTION SUMMARY
Parameters
Data
Parameter name Type Optional Description
_ Void No NULL
PrintImportStatus
Description
Prints status flags returned by Import(). It is useful for debugging your clients.
Returns
Void
Syntax
PrintImportStatus(p)
Parameters
Data
Parameter name Type Optional Description
PrintOpenStatus
Description
Prints status flags returned by Open(). It is useful for debugging your clients.
Returns
Void
Syntax
PrintOpenStatus(p)
965
GLOBAL
CHAPTER 6 FUNCTION SUMMARY
Parameters
Data
Parameter name Type Optional Description
PrintPropVal
Description
Prints the value of a specified property. It is useful for debugging your clients.
Returns
Void
Syntax
PrintPropVal(p)
Parameters
Data
Parameter name Type Optional Description
PrintPropVals
Description
Prints the values in a specified property list. It is useful for debugging your clients.
Returns
Void
Syntax
PrintPropVals(p)
966
GLOBAL
CHAPTER 6 FUNCTION SUMMARY
Parameters
Data
Parameter name Type Optional Description
PrintSaveStatus
Description
Prints errors returned by Save(). It is useful for debugging your clients.
Returns
Void
Syntax
PrintSaveStatus(p)
Parameters
Data
Parameter name Type Optional Description
PrintTextItem
Description
Prints the text in a specified text item. It is useful for debugging clients.
Returns
Void
Syntax
PrintTextItem(textItem)
967
GLOBAL
CHAPTER 6 FUNCTION SUMMARY
Parameters
Data
Parameter name Type Optional Description
PrintTextItems
Description
Prints the text in a specified set of text items (TextItems structure). It is useful for debugging clients.
Returns
Void
Syntax
PrintTextItems(textItems)
Parameters
Data
Parameter name Type Optional Description
PrintUpdateBookStatus
Description
Prints errors returned by UpdateBook(). It is useful for debugging your clients.
Returns
Void
Syntax
PrintUpdateBookStatus(p)
968
GLOBAL
CHAPTER 6 FUNCTION SUMMARY
Parameters
Data
Parameter name Type Optional Description
PushClipboard
Description
Pushes the current Clipboard contents onto the Clipboard stack.The method is useful if you want to use
Clipboard functions, such as Copy() or Cut(), without losing the Clipboard’s original contents.
On failure, the method assigns the following value to FA_errno:
Error Reason
Returns
Void
Syntax
PushClipboard()
Parameters
Data
Parameter name Type Optional Description
Void No NULL
ReturnValue
Description
Sets a return value for a client-defined callback. The method allows a client to provide status information
to the FrameMaker product or client that called the callback.You can call this method in the following
callbacks:
• DialogEvent()
969
GLOBAL
CHAPTER 6 FUNCTION SUMMARY
• Notify()
ReturnValue() is useful for canceling FrameMaker product operations. When your client receives a
Constants.FA_PreNotificationPoint notification for an operation, it can cancel the operation
by calling ReturnValue() with retvalue set to Constants.FR_CancelOperation (-10001).
For example, if your client’s Notify() callback responds to all Constants.FA_Note_PrePrint
(48) notifications by calling ReturnValue() with retvalue set to
Constants.FR_CancelOperation (-10001), FrameMaker cancels all print operations.
Your client can also call ReturnValue() in a DialogEvent() callback to prevent FrameMaker from
closing a modal dialog box.
You can set retvalue to any integer. If you client sets retval in response to one of the following notifica-
tions, it can use the following listed constants:
970
GLOBAL
CHAPTER 6 FUNCTION SUMMARY
Calling ReturnValue() for notifications other than those listed above, has no effect.
A client can also call ReturnValue() in a DialogEvent() callback that responds to actions in a
client-defined modal dialog box.
Normally, when the user clicks a button in a client-defined modal dialog box, FrameMaker calls the
client’s DialogEvent() callback and then closes the dialog box. However, if the client’s
DialogEvent() callback calls ReturnValue() with retvalue set to
Constants.FR_DialogStayUp (-10000) , FrameMaker does not close the dialog box.
The following table lists the values that a client can pass to ReturnValue() in a DialogEvent() call-
back:
Value Meaning
Constants.FR_DialogStayUp Do not close the modal dialog box in which the event occurred.
(-10000)
Any other value Close the modal dialog box.
On success, ReturnValue() returns the value of the retvalue parameter that was set, the previous
time ReturnValue() was called in the current callback function.
On failure, the method assigns the following value to FA_errno:
Error Reason
Returns
int
Syntax
ReturnValue(retvalue)
Parameters
Data
Parameter name Type Optional Description
971
GLOBAL
CHAPTER 6 FUNCTION SUMMARY
ShutDown
Description
Closes an ESTK client’s connection.
Returns
Void
Syntax
ShutDown(_)
Parameters
Data
Parameter name Type Optional Description
_ Void No NULL
SimpleNewDoc
Description
Creates a new document from a specified template.
NOTE: If you call SimpleNewDoc() with interactive set to True and the user clicks etiher Portrait,
Custom, or Landscape in the New dialog box, SimpleNewDoc() does not create a document. Intead, it
returns 0 and sets FA_errno to either Constants.FE_WantsPortrait (-48),
Constants.FE_WantsCustom (-46), or Constants.FE_WantsLandscape (-47), respec-
tively. It is up to your client to create a portrait, custom, or landscape document. NOTE: For more informa-
tion on creating custom documents, see CustomDoc.
If SimpleNewDoc() fails, the method assigns an error code to FA_errno. The error codes for
SimpleNewDoc() are the same as those for Open(). For a list of these error codes, see Open.
Returns
Doc
Syntax
SimpleNewDoc(templateName, interactive)
972
GLOBAL
CHAPTER 6 FUNCTION SUMMARY
Parameters
Data
Parameter name Type Optional Description
UserCancel
Description
Determines whether the user has chosen the Cancel command (ESC) since the current callback function
was called.
UserCancel() is useful for clients that conduct extensive processing that the user may want to cancel.
For example, if your client processes all the documents in a book, it can call UserCancel() after it
processes each document.
If UserCancel() returns True, your client can abort the processing.
Returns True if the user has executed the Cancel gesture, or False if the user has not executed the
Cancel gesture.
Returns
int
Syntax
UserCancel()
Parameters
Data
Parameter name Type Optional Description
Void No NULL
SimpleOpen
Description
Opens a document or book.
973
GLOBAL
CHAPTER 6 FUNCTION SUMMARY
If you call SimpleOpen() with interactive set to True, FrameMaker displays the Open dialog box.
It uses the path specified by the session property, OpenDir, as the default path.
If a warning or error condition arises, FrameMaker notifies the user. For example, if a document uses
fonts that are not available, FrameMaker displays a dialog box that allows the user to cancel the opera-
tion or to continue and remap the fonts.If you set interactive to False, FrameMaker does not
display the Open dialog box or other messages and warnings. If it is necessary to modify a file to continue
opening it, SimpleOpen() aborts the operation without notifying the user, and returns 0.
NOTE: You cannot use SimpleOpen() to open filterable files. To open filterable files, use Open
Returns
Object
Syntax
SimpleOpen(fileName, interactive)
Parameters
Data
Parameter name Type Optional Description
UpdateMenus
Description
Updates the top order menu set. For example, when a new menu file is read, or when a view only, book
menu, quick menu or similar is loaded, this updates the newly read menus (in case of menu file) or
different top menu bar (in case of view only, book and quick menus).
Returns
Void
974
GLOBAL
CHAPTER 6 FUNCTION SUMMARY
Syntax
UpdateMenus()
Parameters
Data
Parameter name Type Optional Description
Void No NULL
AddMenu
Description
Adds a menu to a specified menu.
The method returns FE_Success on success.
On failure, the method assigns one of the following values to FA_errno:
Error Reason
Returns
int
Syntax
AddMenu(toMenu, menu, label)
975
GLOBAL
CHAPTER 6 FUNCTION SUMMARY
Parameters
Data
Parameter name Type Optional Description
RemoveMenu
Description
Deletes the specified menu.
The method returns FE_Success on success.
On failure, the method assigns one of the following values to FA_errno:
Error Reason
Returns
int
Syntax
RemoveMenu(fromMenu, label)
Parameters
Data
Parameter name Type Optional Description
976
GLOBAL
CHAPTER 6 FUNCTION SUMMARY
MenuExists
Description
Indicates whether a specified menu exists.
The method returns 1 if the menu exists or 0 if the menu does not exist.
Returns
int
Syntax
MenuExists(menu)
Parameters
Data
Parameter name Type Optional Description
ShortcutExists
Description
Indicates whether a specified command exists.
The method returns 1 if the command exists or 0 if the command does not exist.
Returns
int
Syntax
ShortcutExists(shortcut)
Parameters
Data
Parameter name Type Optional Description
977
GLOBAL
CHAPTER 6 FUNCTION SUMMARY
GetExportDefaultParams
Description
Returns the PropVals structure containing the default export parameters.
Returns
PropVals
Syntax
GetExportDefaultParams()
Parameters
Data
Parameter name Type Optional Description
Void No Null
PrintExportStatus
Description
Returns
Void
Syntax
PrintExportStatus(p)
Parameters
Data
Parameter name Type Optional Description
p PropVal No
s
ErrorName
Description
Returns the string corresponding to the value of FA_errno.
978
GLOBAL
CHAPTER 6 FUNCTION SUMMARY
Returns
string
Syntax
ErrorName(i)
Parameters
Data
Parameter name Type Optional Description
i int No
PrintErrno
Description
Prints the value of FA_errno to the console.
Returns
Void
Syntax
PrintErrno(i)
Parameters
Data
Parameter name Type Optional Description
i int No
NotificationName
Description
Returns
string
Syntax
NotificationName(i)
979
GLOBAL
CHAPTER 6 FUNCTION SUMMARY
Parameters
Data
Parameter name Type Optional Description
i int No
AllocatePropVals
Description
Allocates memory for a property list.
On success, the method returns a property list (a PropVals data structure).The returned PropVals
structure references memory that is allocated by the method. If AllocatePropVals() fails, the
method sets the len field of the returned structure to 0.
Returns
PropVals
Syntax
AllocatePropVals(numProps)
Parameters
Data
Parameter name Type Optional Description
Open
Description
Opens a document or book. It can also create a new document.
Open() allows you to specify a property list telling FrameMaker how to open or create the file and how
to deal with error and warning conditions.
For example, you can specify whether to abort or to continue opening a document if it contains fonts that
are not available. If the file is already open and invisible, it will make the file visible.
To get a property list to specify for the openParams parameter, use GetOpenDefaultParams() or
create the list from scratch.
980
GLOBAL
CHAPTER 6 FUNCTION SUMMARY
To create a new document with Open(), set the Constants.FS_NewDoc (29) property in the
openParams property list to True.
NOTE: When creating a new document (Constants.FS_NewDoc(29) is True) and you display the
New dialog box (Constants.FS_ShowBrowser (1) is True) and if the user clicks etiher Portrait,
Custom, or Landscape in the New dialog box, Open() does not create a document. Intead, it returns 0
and sets FA_errno to either Constants.FE_WantsPortrait (-48),
Constants.FE_WantsCustom (-46), or Constants.FE_WantsLandscape (-47), respec-
tively. It is up to your client to create a portrait, custom, or landscape document. NOTE: For more informa-
tion on creating custom documents, see CustomDoc.
The method returns the document or book if it opens it successfully, or 0 if an error occurs.
The property list to which openReturnParams is set has the properties shown in the following table:
Both the Constants.FS_OpenNativeError(2) property and the FA_errno global variable indi-
cate the result of a call to Open(). The following table lists the possible status flags and the FA_errno
and Constants.FS_OpenNativeError(2) values associated with them.
981
GLOBAL
CHAPTER 6 FUNCTION SUMMARY
982
GLOBAL
CHAPTER 6 FUNCTION SUMMARY
FS_OpenNativeError and
FA_errno values Possible FS_OpenStatus flags
983
GLOBAL
CHAPTER 6 FUNCTION SUMMARY
FS_OpenNativeError and
FA_errno values Possible FS_OpenStatus flags
Constants.FE_Success (0) (file • Constants.FV_FileAlreadyOpen (48) - The file was in use and
was opened) the user or the Open() script opened another copy.
Constants.FV_UnresolvedXRefs (49) - There were unresolved
cross-references, but the file was opened anyway.
Constants.FV_UnresolvedTextInsets(50) - There were unre-
solved text insets, but the file was opened anyway.
Constants.FE_SystemError (-42) • Constants.FV_TooManyWindows(128) - Too many windows
(file was not opened) were open.
Constants.FV_BadTemplate (129) - A bad template was spec-
ified.
Constants.FV_FileNotReadable (130) - Do not have read per-
mission for the file.
984
GLOBAL
CHAPTER 6 FUNCTION SUMMARY
FS_OpenNativeError and
FA_errno values Possible FS_OpenStatus flags
Constants.FE_BadParameter • Constants.FV_FileHadStructure(64) - File had FrameMaker
(-43) (file was not opened) features, but current FrameMaker product is not
FrameMaker.
Constants.FV_FileAlreadyOpenThisSession (65) - File is al-
ready open and script disallowed opening another copy.
Constants.FV_BadFileType (66) - File was an executable file
or other unreadable type.
Constants.FV_BadFileName (67) - Specified filename was in-
valid.
Constants.FV_CantNewBooks (68) - Script specified a book
that did not exist (the Open operation cannot create a new
book).
Constants.FV_BadScriptValue (70) - Open() script contained
an invalid property value.
Constants.FV_MissingScript (71) - Open() was called with-
out a script.
Constants.FV_CantForceOpenAsText (72) - Open() script at-
tempted to open the file as text, but file was of the wrong
type.
Constants.FV_DisallowedType (73) - File was a Frame binary
document and the Open() script disallowed it.
Constants.FV_DocDamagedByTextFilter (74) - File was a text
document and was damaged when it was filtered.
Constants.FV_DocHeadersDamaged (75) - The document
headers were damaged (probably because of a file system
problem).
Constants.FV_DocWrongSize (76) - File is the wrong size
(probably because of a file system problem).
Constants.FV_ChecksumDamage (77) - Bad checksum.
985
GLOBAL
CHAPTER 6 FUNCTION SUMMARY
FS_OpenNativeError and
FA_errno values Possible FS_OpenStatus flags
Constants.FE_Canceled (-44) • Constants.FV_CancelUseRecoverFile (96) - A recover file was
(file was not opened) present, so the user or the Open() script canceled the Open
operation.
Constants.FV_CancelUseAutoSaveFile (97) - An Autosave file
was present, so the user or the Open() script canceled the
Open operation.
Constants.FV_CancelFileIsText (98) - The file was text, so the
user or the Open() script canceled the Open operation.
Constants.FV_CancelFileIsInUse (99) - The file was in use, so
the user or the Open() script canceled the Open operation.
Constants.FV_CancelFileHasStructure (100) - The file had
structure, so the user or the script canceled the Open opera-
tion.
Constants.FV_CancelReferencedFilesNotFound (101) - The
file contained referenced files that were not available, so the
user or the Open() script canceled the Open operation.
Constants.FV_CancelLanguagesNotFound (102) - The file
contained languages that were not available, so the user or
the Open() script canceled the Open operation.
Constants.FV_CancelFontsMapped (103) - The document
contained fonts that needed to be mapped to other fonts, so
the user or the Open() script canceled the Open operation.
Constants.FV_CancelFontMetricsChanged (104) - The file
contained fonts with changed metrics, so the user or the
Open() script canceled the Open operation.
Constants.FV_CancelFontsMappedInCatalog (105) - The doc-
ument’s Character Catalog or Paragraph Catalog contained
fonts that needed to be mapped to other fonts, so the user or
the Open() script canceled the Open operation.
Constants.FV_CancelFileIsDoc (106) - The file was a docu-
ment and the Open() script disallowed it.
Constants.FV_CancelFileIsMIF (107) - The file was a MIF file
and the Open() script disallowed it.
Constants.FV_CancelBook (108) - The file was a book and the
Open() script disallowed it.
Constants.FV_CancelBookMIF (109) - The file was a MIF file
and the Open() script disallowed it.
Constants.FV_CancelFileIsFilterable (110) - The file was a fil-
terable file and the Open() script disallowed it.
Constants.FV_CancelFileIsOldVersion (111) - The file was
from an old version of a FrameMaker product, so the user or
the Open() script canceled the Open operation.
986
Constants.FV_UserCanceled (112) - The user canceled the
Open operation.
GLOBAL
CHAPTER 6 FUNCTION SUMMARY
FS_OpenNativeError and
FA_errno values Possible FS_OpenStatus flags
• Constants.FE_Success (0) • Constants.FV_LockWasReset (0) - File lock was reset.
Constants.FE_Canceled Constants.FV_LockNotReset (1) - File had a lock that was not
(-44) reset.
Constants.FE_FailedState Constants.FV_LockCouldntBeReset (2) - File had a lock that
(-45) could not be reset.
Constants.FE_CanceledBy- Constants.FV_FileWasInUse (3) - File was in use.
Client (-86) Constants.FV_FileIsViewOnly (4) - File is a View Only file.
Constants.FV_LockWasInvalid (5) - File had an invalid lock.
Constants.FV_FileIsNotWritable (6) - The file was not writ-
able, and the user canceled the open through the alert.
Constants.FV_FileModDateChanged (7) - The file has
changed since the last time it was opened or saved in the cur-
rent session.
Returns
Object
Syntax
Open(fileName, openParams, openReturnParams)
Parameters
Data
Parameter name Type Optional Description
fileName string No The full pathname of the file to open. If you
are using Open() to create a document,
specify the name of the template to use.
openParams PropVal No A property list telling the FrameMaker
s product how to open the file and how to
respond to errors and other conditions. To
use the default list, specify NULL.
openReturnParams PropVal No A property list that returns the filename and
s provides information about how FrameMaker
opened the file. It must be initialized before
you call Open().
987
GLOBAL
CHAPTER 6 FUNCTION SUMMARY
ScrollBox
Description
Displays an array of items and allows the user to choose one.
NOTE: If you set default to -1, always check to make sure the value returned in selected_item is 0
or greater before you use it as an array index. If you set default to -1 and the user clicks OK without
choosing an item, the value returned in selected_item will be -1.
Returns 0 if the user clicked OK, or a nonzero value if the user clicked Cancel or an error occurred.
On failure, the method assigns the following value to FA_errno:
Error Reason
Returns
int
Syntax
ScrollBox(title, stringslist, _default)
Parameters
Data
Parameter name Type Optional Description
ChooseFile
Description
Displays dialog boxes similar to a FrameMaker’s Open and Save dialog boxes. The method displays direc-
tories and files in a scroll list and allows the user to choose a file or directory.
You can set the following values for mode:
988
GLOBAL
CHAPTER 6 FUNCTION SUMMARY
Constants.FV_ChooseSelect Dialog box that allows the user to choose a file by clicking Select.It
(0) provides an input field into which the user can type a filename.
Constants.FV_ChooseOpen Dialog box that allows the user to choose a file by clicking Open.It
(1) provides an input field into which the user can type a filename.
Constants.FV_ChooseSave Dialog box that allows the user to save a file. It provides Save and
(2) Cancel buttons and an input field.
Constants.FV_ChooseOpenD Dialog box that allows the user to choose a directory.
ir (3)
The method returns 0 if the user clicked Open, Select, Use, or Save; a nonzero value if the user clicked
Cancel or an error occurred.
On failure, the method assigns the following value to FA_errno:
Error Reason
Returns
int
Syntax
ChooseFile(title, directory, stuffVal, mode)
Parameters
Data
Parameter name Type Optional Description
989
GLOBAL
CHAPTER 6 FUNCTION SUMMARY
Data
Parameter name Type Optional Description
PromptInt
Description
Displays a dialog box that prompts the user for a single integer value. It allows you to provide a default
value, which appears in the entry field when the dialog box appears. The dialog box has OK and Cancel
buttons.
PromptInt() does not assign a value to *intp if the user clicks Cancel. If the user types alphabetic
text after a number, the method ignores the text and just returns the value of the number.
The method returns 0 if the user clicked OK; a nonzero value if the user clicked Cancel or an error
occurred.
On failure, the method assigns the following value to FA_errno:
Error Reason
Returns
int
Syntax
PromptInt(message, stuffVal)
Parameters
Data
Parameter name Type Optional Description
990
GLOBAL
CHAPTER 6 FUNCTION SUMMARY
Data
Parameter name Type Optional Description
stuffVal string No The default value that appears in the input
field when the dialog box is first displayed.
PromptMetric
Description
Displays a dialog box that prompts the user for a single metric value. It allows you to provide a default
value, which appears in the entry field when the dialog box appears. The dialog box has OK and Cancel
buttons.
PromptMetric() does not assign a value to *metricp if the user clicks Cancel.
PromptMetric() dialog boxes behave like metric dialog boxes in the user interface.If the user types a
number followed by a string that represents a unit (for example 10pts or 5"), the method converts the
number into the equivalent number of metric units. If the user does not specify a unit, the method uses
points (metric 65536).
The method returns 0 if the user clicked OK; a nonzero value if the user clicked Cancel or an error
occurred.
On failure, the method assigns the following value to FA_errno:
Error Reason
Returns
int
Syntax
PromptMetric(message, stuffVal, defaultunit)
Parameters
Data
Parameter name Type Optional Description
991
GLOBAL
CHAPTER 6 FUNCTION SUMMARY
Data
Parameter name Type Optional Description
PromptString
Description
Displays a dialog box that prompts the user for a single string value. It allows you to provide a default
string, which appears in the entry field when the dialog box appears. The dialog box has OK and Cancel
buttons.
NOTE: Do not call PromptString() to prompt the user for a pathname. If the user enters a pathname
as a string, the backslash character (\) is interpreted as a special escape character. For example, the char-
acters \s represent a space. If the user enters the pathname c:\sample, this string is interpreted as c:
ample. To prompt the user for a pathname, use ChooseFile to display a file selection dialog box.
The method returns 0 if the user clicked OK; a nonzero value if the user clicked Cancel or an error
occurred.
On failure, the method assigns the following value to FA_errno:
Error Reason
Returns
string
Syntax
PromptString(message, stuffVal)
992
GLOBAL
CHAPTER 6 FUNCTION SUMMARY
Parameters
Data
Parameter name Type Optional Description
Service
Description
Services calls from FrameMaker to the ESTK API.
Service() waits for and dispatches a single Windows message. If your application contains its own
message processing loop you need not call this routine.
It is not feasible for console applications to receive ESTK notifications since there is no way for them to
both wait for user input and call Service(). Consequently, console applications should not register for
notifications.
The method returns the number of bits the call to select() selected, if any.
Returns
int
Syntax
Service()
FileScrollBox
Description
Displays a file scrollbox using the given title and the given directory as the path.
Returns
int
Syntax
FileScrollBox(title, directory)
993
GLOBAL
CHAPTER 6 FUNCTION SUMMARY
Parameters
Data
Parameter name Type Optional Description
SetCurrentWorkspace
Description
Sets the current workspace to the specified string.
Returns
null
Syntax
var str=”Review”;
SetCurrentWorkspace(str);
Parameters
Data
Parameter name Type Optional Description
GetWorkspaceName
Description
Gets the name of the current workspace.
Returns
string
Syntax
var str=GetWorkspaceName();
994
CMS API DATA STRUCTURES AND ENUM CONSTANTS
CHAPTER 7 CMS CONNECTOR FRAMEWORK
CMSResult
CMSResult
Description
Specifies the state of a Command’s result for CMSCommand.
Returns
CMSResult
Syntax
CMSResult(status,opResult,message,cmsItems);
Parameters
Data
Parameter name Type Optional Description
995
CMS API DATA STRUCTURES AND ENUM CONSTANTS
CHAPTER 7 CMS CONNECTOR FRAMEWORK
Error Reason
CMSItemFileType
Description
Enum constants used to determine File-Type of a CMS Object.
The posssible values of the Constants.FP_CMSItemProperty_ItemFileType fields are:
996
CMS API DATA STRUCTURES AND ENUM CONSTANTS
CHAPTER 7 CMS CONNECTOR FRAMEWORK
CMSProperties
Description
A CMSProperties structure specifies a set of CMS object propeties.
CMSMenuItem
Description
The CMSMenuItem structure describes a custom menu definition.
This structure is used for creating a custom menu entry in the context menu available in CMS tree and
CMS dialogs.
CMSCheckinParam
Description
The CMSCheckinParam structure describes the checkin parameter.
This strcuture is returned by CMSShowCheckinUI API for getting all the user interface state after user
accepts the dialog changes by pressing OK button.
997
ERROR CODES
CHAPTER 7 CMS CONNECTOR FRAMEWORK
CMSDeleteParam
Description
The CMSDeleteParam structure describes the delete parameter.
This strcuture is returned by CMSShowDeleteUI API for getting all the user interface state after the user
accepts the dialog changes by clicking OK.
CMSInfo
Description
The CMSInfo structure describes a single CMS registration information definition
CMSInfos
Description
The CMSInfos structure specifies a set of CMS registration information.
Error Codes
If the CMS API encounters an error condition, the API assigns an error code to the global variable
FA_errno. The following table lists the error codes and their meanings. Error codes are also listed in the
fcmsapi.h header file.
998
CMS API FUNCTIONS
CHAPTER 7 CMS CONNECTOR FRAMEWORK
Constants.FE_CMSBadItemType The item type expected by the CMS object does not
match the valid item type.
Constants.FE_CMSBadItemContainerType The container value expected by the cms object is not
properly set
Constants.FE_CMSSessionCreationFailed If Session creation fails, set status to this value.
Constants.FE_CMSIsValidCMSCommand If user wants FrameMaker to take care of
IsValidCMSCommand, set opResult to this value.
Constants.FE_CMSFailedLogin The CMSLogin API fails to log into a CMS.
Constants.FE_CMSFailedLogout The CMSLogout API fails to log out from a CMS.
Constants.FE_CMSFailedCheckout The CMSCheckout API failed to checkout a file.
Constants.FE_CMSFailedCheckin The CMSCheckin API failed to check in a file
Constants.FE_CMSFailedCancelCheckout The CMSCancelCheckout API fails to cancelcheckout
of a file.
Constants.FE_CMSFailedDelete The CMSDelete API failed to delete a cms object
Constants.FE_CMSFailedOpenFile The CMSOpenFile API failed to open a file
Constants.FE_CMSFailedUploadObject The CMSUploadObject API failed to upload afile or
folder.
Constants.FE_CMSFailedDownloadObject The CMSzDownloadObject API failed to download a
file.
Constants.FE_CMSFailedGetItemFrompath The GetCMSObjectFromPath API failed to return a
CMS object from server path.
999
APIS TO AUTOMATE CMS CONNECTOR FUNCTIONALITY
CHAPTER 7 CMS CONNECTOR FRAMEWORK
CMSConfigLoginUI()
CMSShowCheckoutUI()
CMSShowCheckinUI()
CMSShowCancelCheckoutUI()
CMSShowDeleteUI()
CMSShowCommonListUI()
CMSShowPropertyUI()
CMSShowPropertyUIWithTitle
CMSGetProperty()
CMSGetProperties()
CMSSetProperty()
CMSSetProperties()
CMSLogin
Description
Logs into a particular CMS based on the connection details
Returns
Returns the handle of the new CMS connection if the operation is successful. Else sets FA_errno to
Constants.FE_CMSFailedLogin.
Syntax
CMSLogin (setVal);
1000
APIS TO AUTOMATE CMS CONNECTOR FUNCTIONALITY
CHAPTER 7 CMS CONNECTOR FRAMEWORK
Parameters
Data
Parameter name Type Optional Description
CMSLogout
Description
Logs out the user from a particular CMS connection
Returns
Returns FE_Success if the operation is successful, else sets FA_errno to
Constants.FE_CMSFailedLogout
Syntax
CMSLogout(cmsSessionId);
Parameters
Data
Parameter name Type Optional Description
1001
APIS TO AUTOMATE CMS CONNECTOR FUNCTIONALITY
CHAPTER 7 CMS CONNECTOR FRAMEWORK
CMSCheckout
Description
Checks out a file from the CMS
Returns
Returns FE_Success if the operation is successful. Else sets FA_errno to
Constants.FE_CMSFailedCheckout
Syntax
CMSCheckout(cmsSessionId, cmsObjectId, rootWithDescendants);
Parameters
Data
Parameter name Type Optional Description
CMSCheckin
Description
Checks in a file into the CMS
Returns
Returns FE_Success if the operation is successful, else sets FA_errno to
Constants.FE_CMSFailedCheckin
Syntax
CMSCheckin (cmsSessionId,objectId, checkinParam);
Parameters
Data
Parameter name Type Optional Description
1002
APIS TO AUTOMATE CMS CONNECTOR FUNCTIONALITY
CHAPTER 7 CMS CONNECTOR FRAMEWORK
Data
Parameter name Type Optional Description
cmsObjectId int No The ID of the CMS Object
checkinParam IdValue No Id value pairs to specify the checkin
Pairs parameter. The valid Ids are:
Constants.FV_CMSCommandCheckinMakeCu
rrentVersionId
Constants.FV_CMSCommandCheckinKeepLoc
alCopyId
Constants.FV_CMSCommandCheckinMinorVe
rsionId
Constants.FV_CMSCommandCheckinVersionL
abelId
Constants.FV_CMSCommandCheckinDescript
ionId
Constants.FV_CMSCommandCheckinComme
ntId
CMSCancelCheckout
Description
Cancels check out of a file from the CMS
Returns
Returns FE_Success if the operation is successful, else sets FA_errno to
Constants.FE_CMSFailedCancelCheckout
Syntax
CMSCancelCheckout (cmsSessionId, objectId);
Parameters
Data
Parameter name Type Optional Description
1003
APIS TO AUTOMATE CMS CONNECTOR FUNCTIONALITY
CHAPTER 7 CMS CONNECTOR FRAMEWORK
CMSDelete
Description
Deletes a file or a folder from CMS
Returns
Returns FE_Success if the operation is successful, else sets FA_errno to
Constants.FE_CMSFailedDelete
Syntax
CMSDelete (cmsSessionId,cmsObjectId, deleteParams);
Parameters
Data
Parameter name Type Optional Description
CMSOpenFile
Description
Opens a file or a book from CMS in FrameMaker
Returns
Returns the handle of the file or book if the operation is successful. Else sets FA_errno to
Constants.FE_CMSFailedOpenFile
Syntax
CMSOpenFile(cmsSessionId,cmsObjectId,openParams);
1004
APIS TO AUTOMATE CMS CONNECTOR FUNCTIONALITY
CHAPTER 7 CMS CONNECTOR FRAMEWORK
Parameters
Data
Parameter name Type Optional Description
CMSUploadObject
Description
Uploads a file or a folder into the CMS
Returns
Returns FE_Success if the operation is successful. Else sets FA_errno to
Constants.FE_CMSFailedUploadObject
Syntax
CMSUploadObject(cmsSessionId,cmsObjectId,localFilePath);
Parameters
Data
Parameter name Type Optional Description
CMSDownloadObject
Description
Downloads a file from the CMS
1005
APIS TO AUTOMATE CMS CONNECTOR FUNCTIONALITY
CHAPTER 7 CMS CONNECTOR FRAMEWORK
Returns
Returns the local file path of the downloaded file if the operation is successful. Else sets FA_errno to
Constants.FE_CMSFailedDownloadObject
Syntax
CMSDownloadObject (cmsSessionId, cmsObjectId);
Parameters
Data
Parameter name Type Optional Description
GetCMSObjectFromPath
Description
Gets CMS object from a URL path
Returns
Returns the handle of a CMS object if the operation is successful. Else sets FA_errno to
Constants.FE_CMSFailedGetItemFrompath
Syntax
GetCMSObjectFromPath (cmsSessionId,urlPath);
Parameters
Data
Parameter name Type Optional Description
1006
CHAPTER 8 LEGAL NOTICES
Legal notices
For legal notices, see Legal Notices
1007