<?xml version='1.0' encoding='ISO-8859-1' ?>
<!-- $Revision: 1.6 $ $Date: 2000/09/08 22:35:40 $ -->

<toc version="1.0">

<tocitem target="intro_ma.html">External Interfaces/API

<tocitem target="ch01intr.html">Calling C and Fortran Programs from MATLAB
    <tocitem target="ch01intr.html#29502">Introducing MEX-Files
        <tocitem target="ch01int2.html#29322">Using MEX-Files</tocitem>
        <tocitem target="ch01int3.html#29377">The Distinction Between mx and mex Prefixes</tocitem>
    </tocitem>
    <tocitem target="ch01int4.html#21585">MATLAB Data
        <tocitem target="ch01int4.html#17318">The MATLAB Array</tocitem>
        <tocitem target="ch01int5.html#22019">Data Storage</tocitem>
        <tocitem target="ch01int6.html#22000">Data Types in MATLAB</tocitem>
        <tocitem target="ch01int7.html#10347">Using Data Types</tocitem>
    </tocitem>
    <tocitem target="ch01int8.html#23674">Building MEX-Files
        <tocitem target="ch01int8.html#29719">Compiler Requirements</tocitem>
        <tocitem target="ch01int9.html#23697">Testing Your Configuration on UNIX</tocitem>
        <tocitem target="ch01in10.html#23734">Testing Your Configuration on Windows</tocitem>
        <tocitem target="ch01in11.html#23817">Specifying an Options File</tocitem>
    </tocitem>
    <tocitem target="ch01in12.html#24338">Custom Building MEX-Files
        <tocitem target="ch01in12.html#29623">Who Should Read This Chapter</tocitem>
        <tocitem target="ch01in13.html#24347">MEX Script Switches</tocitem>
        <tocitem target="ch01in14.html#24469">Default Options File on UNIX</tocitem>
        <tocitem target="ch01in15.html#24478">Default Options File on Windows</tocitem>
        <tocitem target="ch01in16.html#24496">Custom Building on UNIX</tocitem>
        <tocitem target="ch01in17.html#24571">Custom Building on Windows</tocitem>
    </tocitem>
    <tocitem target="ch01in18.html#24626">Troubleshooting
        <tocitem target="ch01in18.html#27314">Configuration Issues</tocitem>
        <tocitem target="ch01in19.html#29035">Understanding MEX-File Problems</tocitem>
        <tocitem target="ch01in20.html#24788">Compiler and Platform-Specific Issues</tocitem>
        <tocitem target="ch01in21.html#24804">Memory Management Compatibility Issues</tocitem>
    </tocitem>
    <tocitem target="ch01in22.html#28189">Additional Information
        <tocitem target="ch01in22.html#28183">Files and Directories - UNIX Systems</tocitem>
        <tocitem target="ch01in23.html#28250">Files and Directories - Windows Systems</tocitem>
        <tocitem target="ch01in24.html#28288">Examples</tocitem>
        <tocitem target="ch01in25.html#28269">Technical Support</tocitem>
    </tocitem>
</tocitem>
<tocitem target="ch03crea.html">Creating C Language MEX-Files
    <tocitem target="ch03crea.html#32006">C MEX-Files
        <tocitem target="ch03crea.html#10828">The Components of a C MEX-File</tocitem>
        <tocitem target="ch03cre2.html#25956">Required Arguments to a MEX-File</tocitem>
    </tocitem>
    <tocitem target="ch03cre3.html#12977">Examples of C MEX-Files
        <tocitem target="ch03cre4.html#29510">A First Example -- Passing a Scalar</tocitem>
        <tocitem target="ch03cre5.html#12052">Passing Strings</tocitem>
        <tocitem target="ch03cre6.html#10970">Passing Two or More Inputs or Outputs</tocitem>
        <tocitem target="ch03cre7.html#11333">Passing Structures and Cell Arrays</tocitem>
        <tocitem target="ch03cre8.html#12246">Handling Complex Data</tocitem>
        <tocitem target="ch03cre9.html#19620">Handling 8-,16-, and 32-Bit Data</tocitem>
        <tocitem target="ch03cr10.html#13257">Manipulating Multidimensional Numerical Arrays</tocitem>
        <tocitem target="ch03cr11.html#24370">Handling Sparse Arrays</tocitem>
        <tocitem target="ch03cr12.html#19578">Calling Functions from C MEX-Files</tocitem>
    </tocitem>
    <tocitem target="ch03cr13.html#13120">Advanced Topics
        <tocitem target="ch03cr13.html#26590">Help Files</tocitem>
        <tocitem target="ch03cr13.html#13130">Linking Multiple Files</tocitem>
        <tocitem target="ch03cr13.html#13182">Workspace for MEX-File Functions</tocitem>
        <tocitem target="ch03cr14.html#25255">Memory Management</tocitem>
        <tocitem target="ch03cr15.html#32436">Using LAPACK and BLAS Functions</tocitem>
    </tocitem>
    <tocitem target="ch03cr16.html#32489">Debugging C Language MEX-Files
        <tocitem target="ch03cr17.html#19458">Debugging on UNIX</tocitem>
        <tocitem target="ch03cr18.html#18756">Debugging on Windows</tocitem>
    </tocitem>
</tocitem>
<tocitem target="ch04crea.html">Creating Fortran MEX-Files
    <tocitem target="ch04crea.html#33356">Fortran MEX-Files
        <tocitem target="ch04crea.html#15433">The Components of a Fortran MEX-File</tocitem>
        <tocitem target="ch04cre2.html#20615">The %val Construct</tocitem>
    </tocitem>
    <tocitem target="ch04cre3.html#21779">Examples of Fortran MEX-Files
        <tocitem target="ch04cre4.html#32756">A First Example -- Passing a Scalar</tocitem>
        <tocitem target="ch04cre5.html#18007">Passing Strings</tocitem>
        <tocitem target="ch04cre6.html#19446">Passing Arrays of Strings</tocitem>
        <tocitem target="ch04cre7.html#23290">Passing Matrices</tocitem>
        <tocitem target="ch04cre8.html#25475">Passing Two or More Inputs or Outputs</tocitem>
        <tocitem target="ch04cre9.html#15560">Handling Complex Data</tocitem>
        <tocitem target="ch04cr10.html#18841">Dynamically Allocating Memory</tocitem>
        <tocitem target="ch04cr11.html#21299">Handling Sparse Matrices</tocitem>
        <tocitem target="ch04cr12.html#15593">Calling Functions from Fortran MEX-Files</tocitem>
    </tocitem>
    <tocitem target="ch04cr13.html#15600">Advanced Topics
        <tocitem target="ch04cr13.html#15602">Help Files</tocitem>
        <tocitem target="ch04cr13.html#15605">Linking Multiple Files</tocitem>
        <tocitem target="ch04cr13.html#15611">Workspace for MEX-File Functions</tocitem>
        <tocitem target="ch04cr14.html#28418">Memory Management</tocitem>
    </tocitem>
    <tocitem target="ch04cr15.html#28378">Debugging Fortran Language MEX-Files
        <tocitem target="ch04cr16.html#21321">Debugging on UNIX</tocitem>
        <tocitem target="ch04cr17.html#26863">Debugging on Windows</tocitem>
    </tocitem>
</tocitem>
<tocitem target="ch06engi.html">Calling MATLAB from C and Fortran Programs
    <tocitem target="ch06engi.html#29148">Using the MATLAB Engine
        <tocitem target="ch06eng2.html#26499">The Engine Library</tocitem>
        <tocitem target="ch06eng3.html#29723">GUI-Intensive Applications</tocitem>
    </tocitem>
    <tocitem target="ch06eng4.html#15075">Examples of Calling Engine Functions
        <tocitem target="ch06eng4.html#25603">Calling MATLAB From a C Application</tocitem>
        <tocitem target="ch06eng5.html#25618">Calling MATLAB From a Fortran Application</tocitem>
        <tocitem target="ch06eng6.html#27460">Using an Open MATLAB</tocitem>
    </tocitem>
    <tocitem target="ch06eng7.html#20205">Compiling and Linking Engine Programs
        <tocitem target="ch06eng7.html#26278">Masking Floating-Point Exceptions</tocitem>
        <tocitem target="ch06eng8.html#20231">Compiling and Linking on UNIX</tocitem>
        <tocitem target="ch06eng9.html#26353">Compiling and Linking on Windows</tocitem>
    </tocitem>
</tocitem>
<tocitem target="ch_java.html">Calling Java from MATLAB
    <tocitem target="ch_java.html#82500">Using Java from MATLAB: An Overview
        <tocitem target="ch_java.html#82492">Java Interface Is Integral to MATLAB</tocitem>
        <tocitem target="ch_java.html#5360">Benefits of the MATLAB Java Interface</tocitem>
        <tocitem target="ch_java.html#5336">Who Should Use the MATLAB Java Interface</tocitem>
        <tocitem target="ch_java.html#86387">To Learn More About Java Programming</tocitem>
        <tocitem target="ch_java.html#86397">Platform Support for the Java Virtual Machine</tocitem>
    </tocitem>
    <tocitem target="ch_java2.html#4863">Bringing Java Classes into MATLAB
        <tocitem target="ch_java2.html#5429">Sources of Java Classes</tocitem>
        <tocitem target="ch_java2.html#5501">Defining New Java Classes</tocitem>
        <tocitem target="ch_java3.html#4867">Making Java Classes Available to MATLAB</tocitem>
        <tocitem target="ch_java4.html#46352">Loading Java Class Definitions</tocitem>
        <tocitem target="ch_java5.html#46341">Simplifying Java Class Names</tocitem>
    </tocitem>
    <tocitem target="ch_java6.html#4873">Creating and Using Java Objects
        <tocitem target="ch_java6.html#5787">Constructing Java Objects</tocitem>
        <tocitem target="ch_java7.html#48488">Concatenating Java Objects</tocitem>
        <tocitem target="ch_java8.html#46890">Saving and Loading Java Objects to MAT-Files</tocitem>
        <tocitem target="ch_java9.html#23681">Finding the Public Data Fields of an Object</tocitem>
        <tocitem target="ch_jav10.html#46643">Accessing Private and Public Data</tocitem>
        <tocitem target="ch_jav11.html#46509">Determining the Class of an Object</tocitem>
    </tocitem>
    <tocitem target="ch_jav12.html#46719">Invoking Methods on Java Objects
        <tocitem target="ch_jav12.html#46880">Using Java and MATLAB Calling Syntax</tocitem>
        <tocitem target="ch_jav13.html#23705">Invoking Static Methods on Java Classes</tocitem>
        <tocitem target="ch_jav14.html#6057">Obtaining Information About Methods</tocitem>
        <tocitem target="ch_jav15.html#82681">Java Methods that Affect MATLAB Commands</tocitem>
        <tocitem target="ch_jav16.html#47037">How MATLAB Handles Undefined Methods</tocitem>
        <tocitem target="ch_jav16.html#47328">How MATLAB Handles Java Exceptions</tocitem>
    </tocitem>
    <tocitem target="ch_jav17.html#15351">Working with Java Arrays
        <tocitem target="ch_jav17.html#57083">How MATLAB Represents the Java Array</tocitem>
        <tocitem target="ch_jav18.html#52752">Creating an Array of Objects within MATLAB</tocitem>
        <tocitem target="ch_jav19.html#51557">Accessing Elements of a Java Array</tocitem>
        <tocitem target="ch_jav20.html#33617">Assigning to a Java Array</tocitem>
        <tocitem target="ch_jav21.html#50600">Concatenating Java Arrays</tocitem>
        <tocitem target="ch_jav22.html#50595">Creating a New Array Reference</tocitem>
        <tocitem target="ch_jav23.html#44603">Creating a Copy of a Java Array</tocitem>
    </tocitem>
    <tocitem target="ch_jav24.html#6425">Passing Data to a Java Method
        <tocitem target="ch_jav24.html#47917">Conversion of MATLAB Argument Data</tocitem>
        <tocitem target="ch_jav25.html#61465">Passing Built-In Data Types</tocitem>
        <tocitem target="ch_jav26.html#60475">Passing String Arguments</tocitem>
        <tocitem target="ch_jav27.html#61738">Passing Java Objects</tocitem>
        <tocitem target="ch_jav28.html#58930">Other Data Conversion Topics</tocitem>
        <tocitem target="ch_jav29.html#48789">Passing Data to Overloaded Methods</tocitem>
    </tocitem>
    <tocitem target="ch_jav30.html#6671">Handling Data Returned from a Java Method
        <tocitem target="ch_jav30.html#79172">Conversion of Java Return Data</tocitem>
        <tocitem target="ch_jav31.html#62449">Built-In Data Types</tocitem>
        <tocitem target="ch_jav32.html#61197">Java Objects</tocitem>
        <tocitem target="ch_jav33.html#61057">Converting Objects to MATLAB Data Types</tocitem>
    </tocitem>
    <tocitem target="ch_jav34.html#20700">Introduction to Programming Examples</tocitem>
    <tocitem target="ch_jav35.html#16555">Example - Reading a URL
        <tocitem target="ch_jav36.html#9545">Description of URLdemo</tocitem>
        <tocitem target="ch_jav37.html#10774">Running the Example</tocitem>
    </tocitem>
    <tocitem target="ch_jav38.html#16868">Example - Finding an Internet Protocol Address
        <tocitem target="ch_jav39.html#27814">Description of resolveip</tocitem>
        <tocitem target="ch_jav40.html#21033">Running the Example</tocitem>
    </tocitem>
    <tocitem target="ch_jav41.html#17274">Example - Communicating Through a Serial Port
        <tocitem target="ch_jav42.html#19473">Description of Serial Example</tocitem>
        <tocitem target="ch_jav43.html#26055">Running the serialexample Program</tocitem>
    </tocitem>
    <tocitem target="ch_jav44.html#18070">Example - Creating and Using a Phone Book
        <tocitem target="ch_jav45.html#18086">Description of Function phonebook</tocitem>
        <tocitem target="ch_jav46.html#20112">Description of Function pb_lookup</tocitem>
        <tocitem target="ch_jav47.html#20276">Description of Function pb_add</tocitem>
        <tocitem target="ch_jav48.html#20405">Description of Function pb_remove</tocitem>
        <tocitem target="ch_jav49.html#20493">Description of Function pb_change</tocitem>
        <tocitem target="ch_jav50.html#26586">Description of Function pb_listall</tocitem>
        <tocitem target="ch_jav51.html#20633">Description of Function pb_display</tocitem>
        <tocitem target="ch_jav52.html#20669">Description of Function pb_keyfilter</tocitem>
        <tocitem target="ch_jav53.html#25420">Running the phonebook Program</tocitem>
    </tocitem>
</tocitem>
<tocitem target="ch05matf.html">Importing and Exporting Data
    <tocitem target="ch05matf.html#32561">Using MAT-Files
        <tocitem target="ch05mat2.html#18083">Importing Data to MATLAB</tocitem>
        <tocitem target="ch05mat3.html#13775">Exporting Data from MATLAB</tocitem>
        <tocitem target="ch05mat4.html#13808">Exchanging Data Files Between Platforms</tocitem>
        <tocitem target="ch05mat5.html#13830">Reading and Writing MAT-Files</tocitem>
        <tocitem target="ch05mat6.html#13961">Finding Associated Files</tocitem>
    </tocitem>
    <tocitem target="ch05mat7.html#14500">Examples of MAT-Files
        <tocitem target="ch05mat7.html#25823">Creating a MAT-File in C</tocitem>
        <tocitem target="ch05mat8.html#32276">Reading a MAT-File in C</tocitem>
        <tocitem target="ch05mat9.html#14805">Creating a MAT-File in Fortran</tocitem>
        <tocitem target="ch05ma10.html#27157">Reading a MAT-File in Fortran</tocitem>
    </tocitem>
    <tocitem target="ch05ma11.html#19027">Compiling and Linking MAT-File Programs
        <tocitem target="ch05ma11.html#28485">Masking Floating Point Exceptions</tocitem>
        <tocitem target="ch05ma12.html#20073">Compiling and Linking on UNIX</tocitem>
        <tocitem target="ch05ma13.html#27765">Compiling and Linking on Windows</tocitem>
    </tocitem>
</tocitem>
<tocitem target="ch07clie.html">ActiveX and DDE Support
    <tocitem target="ch07clie.html#42866">Introducing MATLAB ActiveX Integration
        <tocitem target="ch07clie.html#27160">ActiveX Concepts and Terminology</tocitem>
        <tocitem target="ch07cli2.html#27172">MATLAB ActiveX Support Overview</tocitem>
    </tocitem>
    <tocitem target="ch07cli3.html#27178">MATLAB ActiveX Client Support
        <tocitem target="ch07cli3.html#32735">Using ActiveX Objects</tocitem>
        <tocitem target="ch07cli4.html#32792">ActiveX Client Reference</tocitem>
        <tocitem target="actxcontrol.html#27232">actxcontrol</tocitem>
        <tocitem target="actxserver.html#27261">actxserver</tocitem>
        <tocitem target="delete.html#36750">delete</tocitem>
        <tocitem target="get.html#36990">get</tocitem>
        <tocitem target="invoke.html#35321">invoke</tocitem>
        <tocitem target="load.html#37625">load</tocitem>
        <tocitem target="move.html#37763">move</tocitem>
        <tocitem target="propedit.html#37224">propedit</tocitem>
        <tocitem target="release.html#37380">release</tocitem>
        <tocitem target="save.html#38508">save</tocitem>
        <tocitem target="send.html#37499">send</tocitem>
        <tocitem target="set.html#27312">set</tocitem>
    </tocitem>
    <tocitem target="ch07cl17.html#27422">Writing Event Handlers</tocitem>
    <tocitem target="ch07cl18.html#27433">Additional ActiveX Client Information
        <tocitem target="ch07cl18.html#32615">Releasing Interfaces</tocitem>
        <tocitem target="ch07cl19.html#27442">Using ActiveX Collections</tocitem>
        <tocitem target="ch07cl20.html#30546">Converting Data</tocitem>
        <tocitem target="ch07cl21.html#30324">Using MATLAB As a DCOM Server Client</tocitem>
        <tocitem target="ch07cl22.html#34133">MATLAB ActiveX Support Limitations</tocitem>
        <tocitem target="ch07cl23.html#27464">MATLAB Sample Control</tocitem>
        <tocitem target="ch07cl24.html#35759">Using MATLAB As an Automation Client</tocitem>
    </tocitem>
    <tocitem target="ch07cl25.html#27470">MATLAB ActiveX Automation Server Support
        <tocitem target="ch07cl26.html#27488">MATLAB ActiveX Automation Methods</tocitem>
    </tocitem>
    <tocitem target="ch07cl27.html#27558">Additional ActiveX Server Information
        <tocitem target="ch07cl27.html#34614">Launching the MATLAB ActiveX Server</tocitem>
        <tocitem target="ch07cl27.html#33934">Specifying a Shared or Dedicated Server</tocitem>
        <tocitem target="ch07cl28.html#27567">Using MATLAB As a DCOM Server</tocitem>
    </tocitem>
    <tocitem target="ch07cl29.html#27572">Dynamic Data Exchange (DDE)
        <tocitem target="ch07cl29.html#27580">DDE Concepts and Terminology</tocitem>
        <tocitem target="ch07cl30.html#27618">Accessing MATLAB As a Server</tocitem>
        <tocitem target="ch07cl31.html#27648">The DDE Name Hierarchy</tocitem>
        <tocitem target="ch07cl32.html#27799">Example: Using Visual Basic and the MATLAB DDE Server</tocitem>
        <tocitem target="ch07cl33.html#27839">Using MATLAB As a Client</tocitem>
        <tocitem target="ch07cl34.html#27919">DDE Advisory Links</tocitem>
    </tocitem>
</tocitem>
<tocitem target="ch_seria.html">Serial Port I/O
    <tocitem target="ch_seria.html#82668">Introduction
        <tocitem target="ch_seria.html#83776">What Is MATLAB's Serial Port Interface?</tocitem>
        <tocitem target="ch_seria.html#83308">Supported Serial Port Interface Standards</tocitem>
        <tocitem target="ch_seria.html#93372">Supported Platforms</tocitem>
        <tocitem target="ch_seria.html#92816">Using the Examples with Your Device</tocitem>
    </tocitem>
    <tocitem target="ch_seri2.html#63744">Overview of the Serial Port
        <tocitem target="ch_seri3.html#38512">What Is Serial Communication?</tocitem>
        <tocitem target="ch_seri4.html#92563">The Serial Port Interface Standard</tocitem>
        <tocitem target="ch_seri5.html#57751">Connecting Two Devices with a Serial Cable</tocitem>
        <tocitem target="ch_seri6.html#51533">Serial Port Signals and Pin Assignments</tocitem>
        <tocitem target="ch_seri7.html#52182">Serial Data Format</tocitem>
        <tocitem target="ch_seri8.html#84557">Finding Serial Port Information for Your Platform</tocitem>
        <tocitem target="ch_seri9.html#97853">Selected Bibliography</tocitem>
    </tocitem>
    <tocitem target="ch_ser10.html#92576">Getting Started with Serial I/O
        <tocitem target="ch_ser10.html#90253">Example: Getting Started</tocitem>
        <tocitem target="ch_ser11.html#61490">The Serial Port Session</tocitem>
        <tocitem target="ch_ser12.html#61191">Configuring and Returning Properties</tocitem>
    </tocitem>
    <tocitem target="ch_ser13.html#66175">Creating a Serial Port Object
        <tocitem target="ch_ser14.html#43749">Configuring Properties During Object Creation</tocitem>
        <tocitem target="ch_ser15.html#77377">The Serial Port Object Display</tocitem>
        <tocitem target="ch_ser16.html#96883">Creating an Array of Serial Port Objects</tocitem>
    </tocitem>
    <tocitem target="ch_ser17.html#81267">Connecting to the Device</tocitem>
    <tocitem target="ch_ser18.html#95464">Configuring Communication Settings</tocitem>
    <tocitem target="ch_ser19.html#62852">Writing and Reading Data
        <tocitem target="ch_ser19.html#92328">Example: Introduction to Writing and Reading Data</tocitem>
        <tocitem target="ch_ser20.html#62883">Controlling Access to the MATLAB Command Line</tocitem>
        <tocitem target="ch_ser21.html#71503">Writing Data</tocitem>
        <tocitem target="ch_ser22.html#62939">Reading Data</tocitem>
        <tocitem target="ch_ser23.html#63007">Example: Writing and Reading Text Data</tocitem>
        <tocitem target="ch_ser24.html#97378">Example: Parsing Input Data Using strread</tocitem>
        <tocitem target="ch_ser25.html#97373">Example: Reading Binary Data</tocitem>
    </tocitem>
    <tocitem target="ch_ser26.html#73779">Using Events and Actions
        <tocitem target="ch_ser26.html#74133">Example: Introduction to Events and Actions</tocitem>
        <tocitem target="ch_ser27.html#73786">Event Types and Action Properties</tocitem>
        <tocitem target="ch_ser28.html#74786">Storing Event Information</tocitem>
        <tocitem target="ch_ser29.html#75633">Creating and Executing Action Functions</tocitem>
        <tocitem target="ch_ser30.html#98397">Enabling Action Functions After They Error</tocitem>
        <tocitem target="ch_ser31.html#94401">Example: Using Events and Actions</tocitem>
    </tocitem>
    <tocitem target="ch_ser32.html#85300">Using Control Pins
        <tocitem target="ch_ser33.html#85339">Signaling the Presence of Connected Devices</tocitem>
        <tocitem target="ch_ser34.html#85402">Controlling the Flow of Data: Handshaking</tocitem>
    </tocitem>
    <tocitem target="ch_ser35.html#73765">Debugging: Recording Information to Disk
        <tocitem target="ch_ser35.html#92520">Example: Introduction to Recording Information</tocitem>
        <tocitem target="ch_ser36.html#93717">Creating Multiple Record Files</tocitem>
        <tocitem target="ch_ser37.html#91161">Specifying a Filename</tocitem>
        <tocitem target="ch_ser38.html#63445">The Record File Format</tocitem>
        <tocitem target="ch_ser39.html#40323">Example: Recording Information to Disk</tocitem>
    </tocitem>
    <tocitem target="ch_ser40.html#80148">Saving and Loading
        <tocitem target="ch_ser41.html#91607">Using Serial Port Objects on Different Platforms</tocitem>
    </tocitem>
    <tocitem target="ch_ser42.html#63139">Disconnecting and Cleaning Up
        <tocitem target="ch_ser43.html#63141">Disconnecting a Serial Port Object</tocitem>
        <tocitem target="ch_ser44.html#63145">Cleaning Up the MATLAB Environment</tocitem>
    </tocitem>
    <tocitem target="ch_ser45.html#50875">Property Reference
        <tocitem target="ch_ser46.html#50636">The Property Reference Page Format</tocitem>
        <tocitem target="ch_ser47.html#87478">Serial Port Object Properties</tocitem>
        <tocitem target="baudrate.html#15869">BaudRate</tocitem>
        <tocitem target="breakinterruptaction.html#26040">BreakInterruptAction</tocitem>
        <tocitem target="byteorder.html#27839">ByteOrder</tocitem>
        <tocitem target="bytesavailable.html#36952">BytesAvailable</tocitem>
        <tocitem target="bytesavailableaction.html#114721">BytesAvailableAction</tocitem>
        <tocitem target="bytesavailableactioncount.html#13259">BytesAvailableActionCount</tocitem>
        <tocitem target="bytesavailableactionmode.html#80621">BytesAvailableActionMode</tocitem>
        <tocitem target="bytestooutput.html#123077">BytesToOutput</tocitem>
        <tocitem target="databits.html#13355">DataBits</tocitem>
        <tocitem target="dataterminalready.html#111718">DataTerminalReady</tocitem>
        <tocitem target="erroraction.html#13455">ErrorAction</tocitem>
        <tocitem target="flowcontrol.html#13555">FlowControl</tocitem>
        <tocitem target="inputbuffersize.html#13705">InputBufferSize</tocitem>
        <tocitem target="name.html#13905">Name</tocitem>
        <tocitem target="outputbuffersize.html#14005">OutputBufferSize</tocitem>
        <tocitem target="outputemptyaction.html#18379">OutputEmptyAction</tocitem>
        <tocitem target="parity.html#14105">Parity</tocitem>
        <tocitem target="pinstatus.html#33936">PinStatus</tocitem>
        <tocitem target="pinstatusaction.html#22411">PinStatusAction</tocitem>
        <tocitem target="port.html#34638">Port</tocitem>
        <tocitem target="readasyncmode.html#113103">ReadAsyncMode</tocitem>
        <tocitem target="recorddetail.html#109179">RecordDetail</tocitem>
        <tocitem target="recordmode.html#31993">RecordMode</tocitem>
        <tocitem target="recordname.html#32037">RecordName</tocitem>
        <tocitem target="recordstatus.html#53725">RecordStatus</tocitem>
        <tocitem target="requesttosend.html#53761">RequestToSend</tocitem>
        <tocitem target="status.html#14405">Status</tocitem>
        <tocitem target="stopbits.html#53887">StopBits</tocitem>
        <tocitem target="tag.html#14505">Tag</tocitem>
        <tocitem target="terminator.html#14555">Terminator</tocitem>
        <tocitem target="timeout.html#14605">Timeout</tocitem>
        <tocitem target="timeraction.html#150782">TimerAction</tocitem>
        <tocitem target="timerperiod.html#150812">TimerPeriod</tocitem>
        <tocitem target="transferstatus.html#33161">TransferStatus</tocitem>
        <tocitem target="type.html#14721">Type</tocitem>
        <tocitem target="userdata.html#83302">UserData</tocitem>
        <tocitem target="valuesreceived.html#112904">ValuesReceived</tocitem>
        <tocitem target="valuessent.html#112930">ValuesSent</tocitem>
    </tocitem>
</tocitem>

</tocitem>
</toc>
