You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 

10976 lines
467 KiB

<?xml version="1.0"?>
<doc>
<assembly>
<name>Syncfusion.Compression.Base</name>
</assembly>
<members>
<member name="T:Syncfusion.Compression.ChecksumCalculator">
<summary>
Checksum calculator, based on Adler32 algorithm.
</summary>
</member>
<member name="F:Syncfusion.Compression.ChecksumCalculator.DEF_CHECKSUM_BIT_OFFSET">
<summary>
Bits offset, used in adler checksum calculation.
</summary>
</member>
<member name="F:Syncfusion.Compression.ChecksumCalculator.DEF_CHECKSUM_BASE">
<summary>
Lagrest prime, less than 65535
</summary>
</member>
<member name="F:Syncfusion.Compression.ChecksumCalculator.DEF_CHECKSUM_ITERATIONSCOUNT">
<summary>
Count of iteration used in calculated of the adler checksumm.
</summary>
</member>
<member name="M:Syncfusion.Compression.ChecksumCalculator.ChecksumUpdate(System.Int64@,System.Byte[],System.Int32,System.Int32)">
<summary>
Updates checksum by calculating checksum of the
given buffer and adding it to current value.
</summary>
<param name="checksum">Current checksum.</param>
<param name="buffer">Data byte array.</param>
<param name="offset">Offset in the buffer.</param>
<param name="length">Length of data to be used from the stream.</param>
</member>
<member name="M:Syncfusion.Compression.ChecksumCalculator.ChecksumGenerate(System.Byte[],System.Int32,System.Int32)">
<summary>
Generates checksum by calculating checksum of the
given buffer.
</summary>
<param name="buffer">Data byte array.</param>
<param name="offset">Offset in the buffer.</param>
<param name="length">Length of data to be used from the stream.</param>
</member>
<member name="T:Syncfusion.Compression.CompressedStreamReader">
<summary>
Reader, that reads stream with compressed data
</summary>
</member>
<member name="F:Syncfusion.Compression.CompressedStreamReader.DEF_HEADER_METHOD_MASK">
<summary>
Mask for compression method to be decoded from 16-bit header.
</summary>
</member>
<member name="F:Syncfusion.Compression.CompressedStreamReader.DEF_HEADER_INFO_MASK">
<summary>
Mask for compression info to be decoded from 16-bit header.
</summary>
</member>
<member name="F:Syncfusion.Compression.CompressedStreamReader.DEF_HEADER_FLAGS_FCHECK">
<summary>
Mask for check bits to be decoded from 16-bit header.
</summary>
</member>
<member name="F:Syncfusion.Compression.CompressedStreamReader.DEF_HEADER_FLAGS_FDICT">
<summary>
Mask for dictionary presence to be decoded from 16-bit header.
</summary>
</member>
<member name="F:Syncfusion.Compression.CompressedStreamReader.DEF_HEADER_FLAGS_FLEVEL">
<summary>
Mask for compression level to be decoded from 16-bit header.
</summary>
</member>
<member name="F:Syncfusion.Compression.CompressedStreamReader.DEF_MAX_WINDOW_SIZE">
<summary>
Maximum size of the data window.
</summary>
</member>
<member name="F:Syncfusion.Compression.CompressedStreamReader.DEF_HUFFMAN_REPEATE_MAX">
<summary>
Maximum length of the repeatable block.
</summary>
</member>
<member name="F:Syncfusion.Compression.CompressedStreamReader.DEF_HUFFMAN_END_BLOCK">
<summary>
End of the block sign.
</summary>
</member>
<member name="F:Syncfusion.Compression.CompressedStreamReader.DEF_HUFFMAN_LENGTH_MINIMUM_CODE">
<summary>
Minimal length code.
</summary>
</member>
<member name="F:Syncfusion.Compression.CompressedStreamReader.DEF_HUFFMAN_LENGTH_MAXIMUM_CODE">
<summary>
Maximal length code.
</summary>
</member>
<member name="F:Syncfusion.Compression.CompressedStreamReader.DEF_HUFFMAN_DISTANCE_MAXIMUM_CODE">
<summary>
Maximal distance code.
</summary>
</member>
<member name="F:Syncfusion.Compression.CompressedStreamReader.DEF_HUFFMAN_DYNTREE_REPEAT_MINIMUMS">
<summary>
Minimum count of repetions.
</summary>
</member>
<member name="F:Syncfusion.Compression.CompressedStreamReader.DEF_HUFFMAN_DYNTREE_REPEAT_BITS">
<summary>
Bits, that responds for different repetion modes.
</summary>
</member>
<member name="F:Syncfusion.Compression.CompressedStreamReader.DEF_HUFFMAN_REPEAT_LENGTH_BASE">
<summary>
Length bases.
</summary>
</member>
<member name="F:Syncfusion.Compression.CompressedStreamReader.DEF_HUFFMAN_REPEAT_LENGTH_EXTENSION">
<summary>
Length extended bits count.
</summary>
</member>
<member name="F:Syncfusion.Compression.CompressedStreamReader.DEF_HUFFMAN_REPEAT_DISTANCE_BASE">
<summary>
Distance bases.
</summary>
</member>
<member name="F:Syncfusion.Compression.CompressedStreamReader.DEF_HUFFMAN_REPEAT_DISTANCE_EXTENSION">
<summary>
Distance extanded bits count.
</summary>
</member>
<member name="F:Syncfusion.Compression.CompressedStreamReader.m_InputStream">
<summary>
Input stream.
</summary>
</member>
<member name="F:Syncfusion.Compression.CompressedStreamReader.m_CheckSum">
<summary>
Currently calculated checksum,
based on Adler32 algorithm.
</summary>
</member>
<member name="F:Syncfusion.Compression.CompressedStreamReader.m_Buffer">
<summary>
Currently read 4 bytes.
</summary>
</member>
<member name="F:Syncfusion.Compression.CompressedStreamReader.m_BufferedBits">
<summary>
Count of bits that are in buffer.
</summary>
</member>
<member name="F:Syncfusion.Compression.CompressedStreamReader.m_temp_buffer">
<summary>
Temporary buffer.
</summary>
</member>
<member name="F:Syncfusion.Compression.CompressedStreamReader.m_Block_Buffer">
<summary>
32k buffer for unpacked data.
</summary>
</member>
<member name="F:Syncfusion.Compression.CompressedStreamReader.m_bNoWrap">
<summary>
No wrap mode.
</summary>
</member>
<member name="F:Syncfusion.Compression.CompressedStreamReader.m_WindowSize">
<summary>
Window size, can not be larger than 32k.
</summary>
</member>
<member name="F:Syncfusion.Compression.CompressedStreamReader.m_CurrentPosition">
<summary>
Current position in output stream.
Current in-block position can be extracted by applying Int16.MaxValue mask.
</summary>
</member>
<member name="F:Syncfusion.Compression.CompressedStreamReader.m_DataLength">
<summary>
Data length.
Current in-block position can be extracted by applying Int16.MaxValue mask.
</summary>
</member>
<member name="F:Syncfusion.Compression.CompressedStreamReader.m_bReadingUncompressed">
<summary>
Sign of uncompressed data reading.
</summary>
</member>
<member name="F:Syncfusion.Compression.CompressedStreamReader.m_UncompressedDataLength">
<summary>
Size of the block with uncompressed data.
</summary>
</member>
<member name="F:Syncfusion.Compression.CompressedStreamReader.m_bCanReadNextBlock">
<summary>
Specifies wheather next block can to be read.
Reading can be denied because the header of the last block have been read.
</summary>
</member>
<member name="F:Syncfusion.Compression.CompressedStreamReader.m_bCanReadMoreData">
<summary>
Specifies wheather user can read more data from stream.
</summary>
</member>
<member name="F:Syncfusion.Compression.CompressedStreamReader.m_CurrentLengthTree">
<summary>
Current lengths huffman tree.
</summary>
</member>
<member name="F:Syncfusion.Compression.CompressedStreamReader.m_CurrentDistanceTree">
<summary>
Current distances huffman tree.
</summary>
</member>
<member name="F:Syncfusion.Compression.CompressedStreamReader.m_bCheckSumRead">
<summary>
Specifies wheather checksum has been read.
</summary>
</member>
<member name="M:Syncfusion.Compression.CompressedStreamReader.#ctor(System.IO.Stream)">
<summary>
TODO: place correct comment here
</summary>
<param name="stream"/>
</member>
<member name="M:Syncfusion.Compression.CompressedStreamReader.#ctor(System.IO.Stream,System.Boolean)">
<summary>
Creates new reader for streams with compressed data.
</summary>
<param name="stream"></param>
<param name="bNoWrap"></param>
</member>
<member name="M:Syncfusion.Compression.CompressedStreamReader.ChecksumReset">
<summary>
Resets current checksum to 1.
</summary>
</member>
<member name="M:Syncfusion.Compression.CompressedStreamReader.ChecksumUpdate(System.Byte[],System.Int32,System.Int32)">
<summary>
Updates checksum by calculating checksum of the
given buffer and adding it to current value.
</summary>
<param name="buffer">Data byte array.</param>
<param name="offset">Offset in the buffer.</param>
<param name="length">Length of data to be used from the stream.</param>
</member>
<member name="M:Syncfusion.Compression.CompressedStreamReader.SkipToBoundary">
<summary>
Discards left-most partially used byte.
</summary>
</member>
<member name="M:Syncfusion.Compression.CompressedStreamReader.ReadPackedBytes(System.Byte[],System.Int32,System.Int32)">
<summary>
Reads array of bytes.
</summary>
<param name="buffer">Output buffer.</param>
<param name="offset">Offset in output buffer.</param>
<param name="length">Length of the data to be read.</param>
<returns>Count of bytes actually read to the buffer.</returns>
</member>
<member name="M:Syncfusion.Compression.CompressedStreamReader.FillBuffer">
<summary>
Fill`s empty parts of the buffer.
</summary>
</member>
<member name="M:Syncfusion.Compression.CompressedStreamReader.PeekBits(System.Int32)">
<summary>
Reads specified count of bits without adjusting position.
</summary>
<param name="count">Count of bits to be read.</param>
<returns>Read value.</returns>
</member>
<member name="M:Syncfusion.Compression.CompressedStreamReader.SkipBits(System.Int32)">
<summary>
Skips specified count of bits.
</summary>
<param name="count">Count of bits to be skipped.</param>
</member>
<member name="M:Syncfusion.Compression.CompressedStreamReader.ReadBits(System.Int32)">
<summary>
Reads specified count of bits from stream.
</summary>
<param name="count">Count of bits to be read.</param>
<returns>
TODO: place correct comment here
</returns>
</member>
<member name="M:Syncfusion.Compression.CompressedStreamReader.ReadInt16">
<summary>
TODO: place correct comment here
</summary>
<returns>
TODO: place correct comment here
</returns>
</member>
<member name="M:Syncfusion.Compression.CompressedStreamReader.ReadInt16Inverted">
<summary>
TODO: place correct comment here
</summary>
<returns>
TODO: place correct comment here
</returns>
</member>
<member name="M:Syncfusion.Compression.CompressedStreamReader.ReadInt32">
<summary>
TODO: place correct comment here
</summary>
<returns>
TODO: place correct comment here
</returns>
</member>
<member name="M:Syncfusion.Compression.CompressedStreamReader.ReadZLibHeader">
<summary>
Reads ZLib header with compression method and flags.
</summary>
</member>
<member name="M:Syncfusion.Compression.CompressedStreamReader.BitsToString(System.Int32,System.Int32)">
<summary>
TODO: place correct comment here
</summary>
<returns>
TODO: place correct comment here
</returns>
<param name="bits"/>
<param name="count"/>
</member>
<member name="M:Syncfusion.Compression.CompressedStreamReader.DecodeDynHeader(Syncfusion.Compression.DecompressorHuffmanTree@,Syncfusion.Compression.DecompressorHuffmanTree@)">
<summary>
Reades dynamic huffman codes from block header.
</summary>
<param name="lengthTree">Literals/Lengths tree.</param>
<param name="distanceTree">Distances tree.</param>
</member>
<member name="M:Syncfusion.Compression.CompressedStreamReader.DecodeBlockHeader">
<summary>
Reads and decodes block of data.
</summary>
<returns>True if buffer was empty and new data was read, otherwise - False.</returns>
</member>
<member name="M:Syncfusion.Compression.CompressedStreamReader.ReadHuffman">
<summary>
Decodes huffman codes.
</summary>
<returns>True if some data was read.</returns>
</member>
<member name="M:Syncfusion.Compression.CompressedStreamReader.Read(System.Byte[],System.Int32,System.Int32)">
<summary>
Reads data to buffer.
</summary>
<param name="buffer">Output buffer for data.</param>
<param name="offset">Offset in output data.</param>
<param name="length">Length of the data to be read.</param>
<returns>Count of bytes actually read.</returns>
</member>
<member name="P:Syncfusion.Compression.CompressedStreamReader.AvailableBits">
<summary>
GET count of bits available
</summary>
</member>
<member name="P:Syncfusion.Compression.CompressedStreamReader.AvailableBytes">
<summary>
Get count of full bytes available.
</summary>
</member>
<member name="T:Syncfusion.Compression.CompressionLevel">
<summary>
Compression level.
</summary>
</member>
<member name="F:Syncfusion.Compression.CompressionLevel.NoCompression">
<summary>
Pack without compression
</summary>
</member>
<member name="F:Syncfusion.Compression.CompressionLevel.BestSpeed">
<summary>
Use high speed compression, reduce of data size is low
</summary>
</member>
<member name="F:Syncfusion.Compression.CompressionLevel.BelowNormal">
<summary>
Something middle between normal and BestSpeed compressions
</summary>
</member>
<member name="F:Syncfusion.Compression.CompressionLevel.Normal">
<summary>
Use normal compression, middle between speed and size
</summary>
</member>
<member name="F:Syncfusion.Compression.CompressionLevel.AboveNormal">
<summary>
Pack better but require a little more time
</summary>
</member>
<member name="F:Syncfusion.Compression.CompressionLevel.Best">
<summary>
Use best compression, slow enough
</summary>
</member>
<member name="T:Syncfusion.Compression.CompressedStreamWriter">
<summary>
Represents the compressed stream writer
</summary>
</member>
<member name="F:Syncfusion.Compression.CompressedStreamWriter.DEF_ZLIB_HEADER_TEMPLATE">
<summary>
Start template of the zlib header.
</summary>
</member>
<member name="F:Syncfusion.Compression.CompressedStreamWriter.DEFAULT_MEM_LEVEL">
<summary>
Memory usage level.
</summary>
</member>
<member name="F:Syncfusion.Compression.CompressedStreamWriter.DEF_PENDING_BUFFER_SIZE">
<summary>
Size of the pending buffer.
</summary>
</member>
<member name="F:Syncfusion.Compression.CompressedStreamWriter.DEF_HUFFMAN_BUFFER_SIZE">
<summary>
Size of the buffer for the huffman encoding.
</summary>
</member>
<member name="F:Syncfusion.Compression.CompressedStreamWriter.DEF_HUFFMAN_LITERAL_ALPHABET_LENGTH">
<summary>
Length of the literal alphabet(literal+lengths).
</summary>
</member>
<member name="F:Syncfusion.Compression.CompressedStreamWriter.DEF_HUFFMAN_DISTANCES_ALPHABET_LENGTH">
<summary>
Distances alphabet length.
</summary>
</member>
<member name="F:Syncfusion.Compression.CompressedStreamWriter.DEF_HUFFMAN_BITLEN_TREE_LENGTH">
<summary>
Length of the code-lengths tree.
</summary>
</member>
<member name="F:Syncfusion.Compression.CompressedStreamWriter.DEF_HUFFMAN_ENDBLOCK_SYMBOL">
<summary>
Code of the symbol, than means the end of the block.
</summary>
</member>
<member name="F:Syncfusion.Compression.CompressedStreamWriter.WSIZE">
<summary>
Maximum window size.
</summary>
</member>
<member name="F:Syncfusion.Compression.CompressedStreamWriter.WMASK">
<summary>
Internal compression engine constant
</summary>
</member>
<member name="F:Syncfusion.Compression.CompressedStreamWriter.HASH_BITS">
<summary>
Internal compression engine constant
</summary>
</member>
<member name="F:Syncfusion.Compression.CompressedStreamWriter.HASH_SIZE">
<summary>
Internal compression engine constant
</summary>
</member>
<member name="F:Syncfusion.Compression.CompressedStreamWriter.HASH_MASK">
<summary>
Internal compression engine constant
</summary>
</member>
<member name="F:Syncfusion.Compression.CompressedStreamWriter.MAX_MATCH">
<summary>
Internal compression engine constant
</summary>
</member>
<member name="F:Syncfusion.Compression.CompressedStreamWriter.MIN_MATCH">
<summary>
Internal compression engine constant
</summary>
</member>
<member name="F:Syncfusion.Compression.CompressedStreamWriter.HASH_SHIFT">
<summary>
Internal compression engine constant
</summary>
</member>
<member name="F:Syncfusion.Compression.CompressedStreamWriter.MIN_LOOKAHEAD">
<summary>
Internal compression engine constant
</summary>
</member>
<member name="F:Syncfusion.Compression.CompressedStreamWriter.MAX_DIST">
<summary>
Internal compression engine constant
</summary>
</member>
<member name="F:Syncfusion.Compression.CompressedStreamWriter.GOOD_LENGTH">
<summary>
Internal compression engine constant
</summary>
</member>
<member name="F:Syncfusion.Compression.CompressedStreamWriter.MAX_LAZY">
<summary>
Internal compression engine constant
</summary>
</member>
<member name="F:Syncfusion.Compression.CompressedStreamWriter.NICE_LENGTH">
<summary>
Internal compression engine constant
</summary>
</member>
<member name="F:Syncfusion.Compression.CompressedStreamWriter.MAX_CHAIN">
<summary>
Internal compression engine constant
</summary>
</member>
<member name="F:Syncfusion.Compression.CompressedStreamWriter.COMPR_FUNC">
<summary>
Internal compression engine constant
</summary>
</member>
<member name="F:Syncfusion.Compression.CompressedStreamWriter.MAX_BLOCK_SIZE">
<summary>
Internal compression engine constant
</summary>
</member>
<member name="F:Syncfusion.Compression.CompressedStreamWriter.m_stream">
<summary>
Output stream.
</summary>
</member>
<member name="F:Syncfusion.Compression.CompressedStreamWriter.m_PendingBuffer">
<summary>
Pending buffer for writing.
</summary>
</member>
<member name="F:Syncfusion.Compression.CompressedStreamWriter.m_PendingBufferLength">
<summary>
Length of the unflushed data.
</summary>
</member>
<member name="F:Syncfusion.Compression.CompressedStreamWriter.m_PendingBufferBitsCache">
<summary>
Bits cache for pending buffer.
</summary>
</member>
<member name="F:Syncfusion.Compression.CompressedStreamWriter.m_PendingBufferBitsInCache">
<summary>
Count of bits in pending buffer cache.
</summary>
</member>
<member name="F:Syncfusion.Compression.CompressedStreamWriter.m_bNoWrap">
<summary>
If true, no zlib header will be written to the stream.
</summary>
</member>
<member name="F:Syncfusion.Compression.CompressedStreamWriter.m_CheckSum">
<summary>
Current checksum.
</summary>
</member>
<member name="F:Syncfusion.Compression.CompressedStreamWriter.m_Level">
<summary>
Current compression level.
</summary>
</member>
<member name="F:Syncfusion.Compression.CompressedStreamWriter.m_treeLiteral">
<summary>
Current tree for literals.
</summary>
</member>
<member name="F:Syncfusion.Compression.CompressedStreamWriter.m_treeDistances">
<summary>
Current tree for distances.
</summary>
</member>
<member name="F:Syncfusion.Compression.CompressedStreamWriter.m_treeCodeLengths">
<summary>
Current tree for code lengths.
</summary>
</member>
<member name="F:Syncfusion.Compression.CompressedStreamWriter.m_iBufferPosition">
<summary>
Current position in literals and distances buffer.
</summary>
</member>
<member name="F:Syncfusion.Compression.CompressedStreamWriter.m_arrLiteralsBuffer">
<summary>
Recorded literals buffer.
</summary>
</member>
<member name="F:Syncfusion.Compression.CompressedStreamWriter.m_arrDistancesBuffer">
<summary>
Recorded distances buffer.
</summary>
</member>
<member name="F:Syncfusion.Compression.CompressedStreamWriter.m_iExtraBits">
<summary>
Count of the extra bits.
</summary>
</member>
<member name="F:Syncfusion.Compression.CompressedStreamWriter.m_arrLiteralCodes">
<summary>
Static array of the literal codes.
</summary>
</member>
<member name="F:Syncfusion.Compression.CompressedStreamWriter.m_arrLiteralLengths">
<summary>
Static array of the lengths of the literal codes.
</summary>
</member>
<member name="F:Syncfusion.Compression.CompressedStreamWriter.m_arrDistanceCodes">
<summary>
Static array of the distance codes.
</summary>
</member>
<member name="F:Syncfusion.Compression.CompressedStreamWriter.m_arrDistanceLengths">
<summary>
Static array of the lengths of the distance codes.
</summary>
</member>
<member name="F:Syncfusion.Compression.CompressedStreamWriter.m_bStreamClosed">
<summary>
If true, no futher writings can be performed.
</summary>
</member>
<member name="F:Syncfusion.Compression.CompressedStreamWriter.m_CurrentHash">
<summary>
Current hash.
</summary>
</member>
<member name="F:Syncfusion.Compression.CompressedStreamWriter.m_HashHead">
<summary>
Hash m_HashHead.
</summary>
</member>
<member name="F:Syncfusion.Compression.CompressedStreamWriter.m_HashPrevious">
<summary>
Previous hashes.
</summary>
</member>
<member name="F:Syncfusion.Compression.CompressedStreamWriter.m_MatchStart">
<summary>
Start of the matched part.
</summary>
</member>
<member name="F:Syncfusion.Compression.CompressedStreamWriter.m_MatchLength">
<summary>
Length of the matched part.
</summary>
</member>
<member name="F:Syncfusion.Compression.CompressedStreamWriter.m_MatchPreviousAvailable">
<summary>
Previous match available.
</summary>
</member>
<member name="F:Syncfusion.Compression.CompressedStreamWriter.m_BlockStart">
<summary>
Start of the data window.
</summary>
</member>
<member name="F:Syncfusion.Compression.CompressedStreamWriter.m_StringStart">
<summary>
String start in data window.
</summary>
</member>
<member name="F:Syncfusion.Compression.CompressedStreamWriter.m_LookAhead">
<summary>
Lookahead.
</summary>
</member>
<member name="F:Syncfusion.Compression.CompressedStreamWriter.m_DataWindow">
<summary>
Data window.
</summary>
</member>
<member name="F:Syncfusion.Compression.CompressedStreamWriter.m_MaximumChainLength">
<summary>
Maximum chain length.
</summary>
</member>
<member name="F:Syncfusion.Compression.CompressedStreamWriter.m_MaximumLazySearch">
<summary>
Maximum distance of the search with "lazy" algotithm.
</summary>
</member>
<member name="F:Syncfusion.Compression.CompressedStreamWriter.m_NiceLength">
<summary>
Nice length of the block.
</summary>
</member>
<member name="F:Syncfusion.Compression.CompressedStreamWriter.m_GoodLength">
<summary>
Good length of the block.
</summary>
</member>
<member name="F:Syncfusion.Compression.CompressedStreamWriter.m_CompressionFunction">
<summary>
Current compression function.
</summary>
</member>
<member name="F:Syncfusion.Compression.CompressedStreamWriter.m_InputBuffer">
<summary>
Current block of the data to be compressed.
</summary>
</member>
<member name="F:Syncfusion.Compression.CompressedStreamWriter.m_TotalBytesIn">
<summary>
Total count of bytes, that were compressed.
</summary>
</member>
<member name="F:Syncfusion.Compression.CompressedStreamWriter.m_InputOffset">
<summary>
Offset in the input buffer, where input starts.
</summary>
</member>
<member name="F:Syncfusion.Compression.CompressedStreamWriter.m_InputEnd">
<summary>
Offset in the input buffer, where input ends.
</summary>
</member>
<member name="F:Syncfusion.Compression.CompressedStreamWriter.m_bCloseStream">
<summary>
If true, stream will be closed after the last block.
</summary>
</member>
<member name="M:Syncfusion.Compression.CompressedStreamWriter.#cctor">
<summary>
Initializes statical data for huffman compression.
</summary>
</member>
<member name="M:Syncfusion.Compression.CompressedStreamWriter.#ctor(System.IO.Stream,System.Boolean,Syncfusion.Compression.CompressionLevel,System.Boolean)">
<summary>
Initializes compressor and writes ZLib header if needed.
</summary>
<param name="outputStream">Output stream.</param>
<param name="bNoWrap">If true, ZLib header and checksum will not be written.</param>
<param name="level">Compression level.</param>
<param name="bCloseStream">If true, output stream will be closed after the last block has been written.</param>
</member>
<member name="M:Syncfusion.Compression.CompressedStreamWriter.#ctor(System.IO.Stream,System.Boolean,System.Boolean)">
<summary>
Initializes compressor and writes ZLib header if needed.
Compression level is set to normal.
</summary>
<param name="outputStream">Output stream.</param>
<param name="bNoWrap">If true, ZLib header and checksum will not be written.</param>
<param name="bCloseStream">If true, output stream will be closed after the last block has been written.</param>
</member>
<member name="M:Syncfusion.Compression.CompressedStreamWriter.#ctor(System.IO.Stream,Syncfusion.Compression.CompressionLevel,System.Boolean)">
<summary>
Initializes compressor and writes ZLib header.
</summary>
<param name="outputStream">Output stream.</param>
<param name="level">Compression level.</param>
<param name="bCloseStream">If true, output stream will be closed after the last block has been written.</param>
</member>
<member name="M:Syncfusion.Compression.CompressedStreamWriter.#ctor(System.IO.Stream,System.Boolean)">
<summary>
Initializes compressor and writes ZLib header.
</summary>
<param name="outputStream">Output stream.</param>
<param name="bCloseStream">If true, output stream will be closed after the last block has been written.</param>
</member>
<member name="M:Syncfusion.Compression.CompressedStreamWriter.Write(System.Byte[],System.Int32,System.Int32,System.Boolean)">
<summary>
Compresses data and writes it to the stream.
</summary>
<param name="data">Data to compress</param>
<param name="offset">offset in data array</param>
<param name="length">length of data to compress</param>
<param name="bCloseAfterWrite">True - write last compress block in stream,
otherwise False</param>
</member>
<member name="M:Syncfusion.Compression.CompressedStreamWriter.WriteZLIBHeader">
<summary>
Writes ZLib header to stream.
</summary>
</member>
<member name="M:Syncfusion.Compression.CompressedStreamWriter.FillWindow">
<summary>
Fill the window
</summary>
</member>
<member name="M:Syncfusion.Compression.CompressedStreamWriter.SlideWindow">
<summary>
Slides current window, and data, associated with it.
</summary>
</member>
<member name="M:Syncfusion.Compression.CompressedStreamWriter.UpdateHash">
<summary>
Updates hash.
</summary>
</member>
<member name="M:Syncfusion.Compression.CompressedStreamWriter.InsertString">
<summary>
Inserts string to the hash.
</summary>
<returns></returns>
</member>
<member name="M:Syncfusion.Compression.CompressedStreamWriter.FindLongestMatch(System.Int32)">
<summary>
Searches for the longest match.
</summary>
<param name="curMatch"></param>
<returns></returns>
</member>
<member name="M:Syncfusion.Compression.CompressedStreamWriter.SaveStored(System.Boolean,System.Boolean)">
<summary>
Store data without compression.
</summary>
<param name="flush"></param>
<param name="finish"></param>
<returns></returns>
</member>
<member name="M:Syncfusion.Compression.CompressedStreamWriter.CompressFast(System.Boolean,System.Boolean)">
<summary>
Compress with a maximum speed.
</summary>
<param name="flush"></param>
<param name="finish"></param>
<returns></returns>
</member>
<member name="M:Syncfusion.Compression.CompressedStreamWriter.CompressSlow(System.Boolean,System.Boolean)">
<summary>
Compress, using maximum compression level.
</summary>
<param name="flush"></param>
<param name="finish"></param>
<returns></returns>
</member>
<member name="M:Syncfusion.Compression.CompressedStreamWriter.CompressData(System.Boolean)">
<summary>
CompressData drives actual compression of data
</summary>
</member>
<member name="M:Syncfusion.Compression.CompressedStreamWriter.HuffmanReset">
<summary>
Reset internal state
</summary>
</member>
<member name="M:Syncfusion.Compression.CompressedStreamWriter.HuffmanLengthCode(System.Int32)">
<summary>
Calculates length code from length.
</summary>
<param name="len">Length.</param>
<returns>Length code.</returns>
</member>
<member name="M:Syncfusion.Compression.CompressedStreamWriter.HuffmanDistanceCode(System.Int32)">
<summary>
Calculates distance code from distance.
</summary>
<param name="distance">Distance.</param>
<returns>Distance code.</returns>
</member>
<member name="M:Syncfusion.Compression.CompressedStreamWriter.HuffmanSendAllTrees(System.Int32)">
<summary>
Write all trees to pending buffer
</summary>
</member>
<member name="M:Syncfusion.Compression.CompressedStreamWriter.HuffmanCompressBlock">
<summary>
Compress current buffer writing data to pending buffer
</summary>
</member>
<member name="M:Syncfusion.Compression.CompressedStreamWriter.HuffmanFlushStoredBlock(System.Byte[],System.Int32,System.Int32,System.Boolean)">
<summary>
Flush block to output with no compression
</summary>
<param name="stored">Data to write</param>
<param name="storedOffset">Index of first byte to write</param>
<param name="storedLength">Count of bytes to write</param>
<param name="lastBlock">True if this is the last block</param>
</member>
<member name="M:Syncfusion.Compression.CompressedStreamWriter.HuffmanFlushBlock(System.Byte[],System.Int32,System.Int32,System.Boolean)">
<summary>
Flush block to output with compression
</summary>
<param name="stored">Data to flush</param>
<param name="storedOffset">Index of first byte to flush</param>
<param name="storedLength">Count of bytes to flush</param>
<param name="lastBlock">True if this is the last block</param>
</member>
<member name="M:Syncfusion.Compression.CompressedStreamWriter.HuffmanTallyLit(System.Int32)">
<summary>
Add literal to buffer.
</summary>
<param name="literal"></param>
<returns>Value indicating internal buffer is full</returns>
</member>
<member name="M:Syncfusion.Compression.CompressedStreamWriter.HuffmanTallyDist(System.Int32,System.Int32)">
<summary>
Add distance code and length to literal and distance trees
</summary>
<param name="dist">Distance code</param>
<param name="len">Length</param>
<returns>Value indicating if internal buffer is full</returns>
</member>
<member name="M:Syncfusion.Compression.CompressedStreamWriter.PendingBufferWriteByte(System.Int32)">
<summary>
write a byte to buffer
</summary>
<param name="b">
value to write
</param>
</member>
<member name="M:Syncfusion.Compression.CompressedStreamWriter.PendingBufferWriteShort(System.Int32)">
<summary>
Write a short value to buffer LSB first
</summary>
<param name="s">
value to write
</param>
</member>
<member name="M:Syncfusion.Compression.CompressedStreamWriter.PendingBufferWriteInt(System.Int32)">
<summary>
write an integer LSB first
</summary>
<param name="s">value to write</param>
</member>
<member name="M:Syncfusion.Compression.CompressedStreamWriter.PendingBufferWriteByteBlock(System.Byte[],System.Int32,System.Int32)">
<summary>
Write a block of data to buffer
</summary>
<param name="data">data to write</param>
<param name="offset">offset of first byte to write</param>
<param name="length">number of bytes to write</param>
</member>
<member name="M:Syncfusion.Compression.CompressedStreamWriter.PendingBufferAlignToByte">
<summary>
Align internal buffer on a byte boundary
</summary>
</member>
<member name="M:Syncfusion.Compression.CompressedStreamWriter.PendingBufferWriteBits(System.Int32,System.Int32)">
<summary>
Write bits to internal buffer
</summary>
<param name="b">source of bits</param>
<param name="count">number of bits to write</param>
</member>
<member name="M:Syncfusion.Compression.CompressedStreamWriter.PendingBufferWriteShortMSB(System.Int32)">
<summary>
Write a short value to internal buffer most significant byte first
</summary>
<param name="s">value to write</param>
</member>
<member name="M:Syncfusion.Compression.CompressedStreamWriter.PendingBufferFlush">
<summary>
Flushes the pending buffer into the given output array. If the
output array is to small, only a partial flush is done.
</summary>
</member>
<member name="M:Syncfusion.Compression.CompressedStreamWriter.PendingBufferFlushBits">
<summary>
Flushes fully recorded bytes to buffer array.
</summary>
<returns>Count of bytes, added to buffer.</returns>
</member>
<member name="M:Syncfusion.Compression.CompressedStreamWriter.PendingBufferToByteArray">
<summary>
Convert internal buffer to byte array.
Buffer is empty on completion
</summary>
<returns>
converted buffer contents contents
</returns>
</member>
<member name="P:Syncfusion.Compression.CompressedStreamWriter.TotalIn">
<summary>
Total data processed.
</summary>
</member>
<member name="P:Syncfusion.Compression.CompressedStreamWriter.NeedsInput">
<summary>
Return true if input is needed
</summary>
</member>
<member name="P:Syncfusion.Compression.CompressedStreamWriter.HuffmanIsFull">
<summary>
Checks, wheather huffman compression buffer is full.
</summary>
<returns>True if buffer is full.</returns>
</member>
<member name="P:Syncfusion.Compression.CompressedStreamWriter.PendingBufferBitCount">
<summary>
The number of bits written to the buffer
</summary>
</member>
<member name="P:Syncfusion.Compression.CompressedStreamWriter.PendingBufferIsFlushed">
<summary>
Indicates if buffer has been flushed
</summary>
</member>
<member name="T:Syncfusion.Compression.CompressedStreamWriter.BlockType">
<summary>
Type of the block.
</summary>
</member>
<member name="F:Syncfusion.Compression.CompressedStreamWriter.BlockType.Stored">
<summary>
Data simply stored as is
</summary>
</member>
<member name="F:Syncfusion.Compression.CompressedStreamWriter.BlockType.FixedHuffmanCodes">
<summary>
An option to use Fixed Huffman tree codes
</summary>
</member>
<member name="F:Syncfusion.Compression.CompressedStreamWriter.BlockType.DynamicHuffmanCodes">
<summary>
An option to use Dynamically built Huffman codes
</summary>
</member>
<member name="T:Syncfusion.Compression.CompressorHuffmanTree">
<summary>
Represents the Huffman Tree.
</summary>
</member>
<member name="F:Syncfusion.Compression.CompressorHuffmanTree.m_CodeFrequences">
<summary>
Frequences of the codes.
</summary>
</member>
<member name="F:Syncfusion.Compression.CompressorHuffmanTree.m_Codes">
<summary>
Codes itself.
</summary>
</member>
<member name="F:Syncfusion.Compression.CompressorHuffmanTree.m_CodeLengths">
<summary>
Bit counts, needed to encode different codes.
</summary>
</member>
<member name="F:Syncfusion.Compression.CompressorHuffmanTree.m_LengthCounts">
<summary>
Count of codes with some lengths.
Index - length, value - count.
</summary>
</member>
<member name="F:Syncfusion.Compression.CompressorHuffmanTree.m_CodeMinimumCount">
<summary>
TODO: place correct comment here
</summary>
</member>
<member name="F:Syncfusion.Compression.CompressorHuffmanTree.m_CodeCount">
<summary>
TODO: place correct comment here
</summary>
</member>
<member name="F:Syncfusion.Compression.CompressorHuffmanTree.m_MaximumLength">
<summary>
TODO: place correct comment here
</summary>
</member>
<member name="F:Syncfusion.Compression.CompressorHuffmanTree.m_Writer">
<summary>
Data compressor.
</summary>
</member>
<member name="M:Syncfusion.Compression.CompressorHuffmanTree.#ctor(Syncfusion.Compression.CompressedStreamWriter,System.Int32,System.Int32,System.Int32)">
<summary>
Create a new Huffman tree
</summary>
<param name="writer"/>
<param name="iElementsCount"/>
<param name="iMinimumCodes"/>
<param name="iMaximumLength"/>
</member>
<member name="M:Syncfusion.Compression.CompressorHuffmanTree.Reset">
<summary>
Resets all code data in tree.
</summary>
</member>
<member name="M:Syncfusion.Compression.CompressorHuffmanTree.WriteCodeToStream(System.Int32)">
<summary>
Writes code to the compressor output stream.
</summary>
<param name="code">Code to be written.</param>
</member>
<member name="M:Syncfusion.Compression.CompressorHuffmanTree.CheckEmpty">
<summary>
Checks wheather tree is empty.
If tree is not empty, then exception will be raised.
</summary>
</member>
<member name="M:Syncfusion.Compression.CompressorHuffmanTree.SetStaticCodes(System.Int16[],System.Byte[])">
<summary>
Specifies new arrays of codes and their lengths.
</summary>
<param name="codes">Array of codes.</param>
<param name="lengths">Array of code lengths.</param>
</member>
<member name="M:Syncfusion.Compression.CompressorHuffmanTree.BuildCodes">
<summary>
Calculates codes from their frequences.
</summary>
</member>
<member name="M:Syncfusion.Compression.CompressorHuffmanTree.BuildLength(System.Int32[])">
<summary>
Build tree with lengths.
</summary>
<param name="childs"></param>
</member>
<member name="M:Syncfusion.Compression.CompressorHuffmanTree.BuildTree">
<summary>
Builds tree.
</summary>
</member>
<member name="M:Syncfusion.Compression.CompressorHuffmanTree.GetEncodedLength">
<summary>
Calculates length of the compressed data.
</summary>
<returns>Count of bits, the data will occupy.</returns>
</member>
<member name="M:Syncfusion.Compression.CompressorHuffmanTree.CalcBLFreq(Syncfusion.Compression.CompressorHuffmanTree)">
<summary>
Calculates code frequences.
</summary>
<param name="blTree">Tree.</param>
</member>
<member name="M:Syncfusion.Compression.CompressorHuffmanTree.WriteTree(Syncfusion.Compression.CompressorHuffmanTree)">
<summary>
Writes tree to output stream.
</summary>
<param name="blTree">Tree to be written.</param>
</member>
<member name="P:Syncfusion.Compression.CompressorHuffmanTree.TreeLength">
<summary>
Length of the tree.
</summary>
</member>
<member name="P:Syncfusion.Compression.CompressorHuffmanTree.CodeLengths">
<summary>
Lengths of codes in tree.
</summary>
</member>
<member name="P:Syncfusion.Compression.CompressorHuffmanTree.CodeFrequences">
<summary>
Code frequences.
</summary>
</member>
<member name="T:Syncfusion.Compression.DecompressorHuffmanTree">
<summary>
Huffman tree, used for decompression.
</summary>
</member>
<member name="F:Syncfusion.Compression.DecompressorHuffmanTree.MAX_BITLEN">
<summary>
Maximum count of bits.
</summary>
</member>
<member name="F:Syncfusion.Compression.DecompressorHuffmanTree.m_Tree">
<summary>
Build huffman tree.
</summary>
</member>
<member name="F:Syncfusion.Compression.DecompressorHuffmanTree.m_LengthTree">
<summary>
Huffman tree for encoding and decoding lengths.
</summary>
</member>
<member name="F:Syncfusion.Compression.DecompressorHuffmanTree.m_DistanceTree">
<summary>
huffman tree for encoding and decoding distances.
</summary>
</member>
<member name="M:Syncfusion.Compression.DecompressorHuffmanTree.#cctor">
<summary>
Generates fixed huffman trees.
</summary>
</member>
<member name="M:Syncfusion.Compression.DecompressorHuffmanTree.#ctor(System.Byte[])">
<summary>
Creates huffman tree.
</summary>
<param name="codeLengths"></param>
</member>
<member name="M:Syncfusion.Compression.DecompressorHuffmanTree.PrepareData(System.Int32[],System.Int32[],System.Byte[],System.Int32@)">
<summary>
Prepares data for generating huffman tree.
</summary>
<param name="blCount">Array of counts of each code length.</param>
<param name="nextCode">Numerical values of the smallest code for each code length.</param>
<param name="lengths">Array of code lengths.</param>
<param name="treeSize">Calculated tree size.</param>
<returns>Code.</returns>
</member>
<member name="M:Syncfusion.Compression.DecompressorHuffmanTree.TreeFromData(System.Int32[],System.Int32[],System.Byte[],System.Int32,System.Int32)">
<summary>
Generates huffman tree.
</summary>
<param name="blCount">Array of counts of each code length.</param>
<param name="nextCode">Numerical values of the smallest code for each code length.</param>
<param name="code">Precalculated code.</param>
<param name="lengths">Array of code lengths.</param>
<param name="treeSize">Calculated size of the tree.</param>
<returns>Generated tree.</returns>
</member>
<member name="M:Syncfusion.Compression.DecompressorHuffmanTree.BuildTree(System.Byte[])">
<summary>
Builds huffman tree from array of code lengths.
</summary>
<param name="lengths">Array of code lengths.</param>
</member>
<member name="M:Syncfusion.Compression.DecompressorHuffmanTree.UnpackSymbol(Syncfusion.Compression.CompressedStreamReader)">
<summary>
Reads and decompresses one symbol.
</summary>
<param name="input"></param>
<returns></returns>
</member>
<member name="P:Syncfusion.Compression.DecompressorHuffmanTree.LengthTree">
<summary>
GET huffman tree for encoding and decoding lengths.
</summary>
</member>
<member name="P:Syncfusion.Compression.DecompressorHuffmanTree.DistanceTree">
<summary>
GET huffman tree for encoding and decoding distances.
</summary>
</member>
<member name="M:Syncfusion.Office.ArabicShapeRenderer.Dispose">
<summary>
Dispose a ArabicShapeRenderer instance.
</summary>
</member>
<member name="T:Syncfusion.Office.FallbackFont">
<summary>
FallbackFont class used to represent a start, end Unicode ranges and font names of fall back font.
</summary>
</member>
<member name="M:Syncfusion.Office.FallbackFont.#ctor(System.UInt32,System.UInt32,System.String)">
<summary>
Create a instance of FallbackFont class.
</summary>
<param name=" startUnicodeRange ">Represent a start Unicode range of fall back font.</param>
<param name=" endUnicodeRange ">Represent a end Unicode range of fall back font.</param>
<param name="fontNames">Represent a fall back font name or names (split by comma).</param>
</member>
<member name="M:Syncfusion.Office.FallbackFont.IsWithInRange(System.String)">
<summary>
Check whether any character of input text is with in the start and end Unicode ranges.
</summary>
<param name="inputText">Represent a input text to check.</param>
<returns>Returns true, if any character of input text is in-between start and end Unicode range; Otherwise false.</returns>
</member>
<member name="P:Syncfusion.Office.FallbackFont.StartUnicodeRange">
<summary>
Gets or Sets a Unicode range of start character which use a fall back font.
</summary>
</member>
<member name="P:Syncfusion.Office.FallbackFont.EndUnicodeRange">
<summary>
Gets or Sets a Unicode range of end character which use a fall back font.
</summary>
</member>
<member name="P:Syncfusion.Office.FallbackFont.FontNames">
<summary>
Gets or Sets a fall back font names (split by comma).
</summary>
</member>
<member name="T:Syncfusion.Office.TextSplitter">
<summary>
Represent a text splitter class and it can be used to split the input text based on the FontScriptType.
</summary>
</member>
<member name="M:Syncfusion.Office.TextSplitter.IsEastAsiaScript(Syncfusion.Office.FontScriptType)">
<summary>
Check whether specified script is EastAsia script or not.
</summary>
<param name="scriptType">Represent a FontScriptType to check.</param>
<returns></returns>
</member>
<member name="M:Syncfusion.Office.TextSplitter.GetFontScriptType(System.Char)">
<summary>
Gets a FontScriptType of input character.
</summary>
<param name="inputCharacter">Represent a input character to check.</param>
<returns>Returns a FontScriptType of input character.</returns>
</member>
<member name="M:Syncfusion.Office.TextSplitter.SplitTextByFontScriptType(System.String,System.Collections.Generic.List{Syncfusion.Office.FontScriptType}@)">
<summary>
Split the input text based on the FontScriptType.
</summary>
<param name="inputText">Represent the input text to split.</param>
<param name="fontScriptTypes">Represent the FontScriptType of a splitted text.</param>
<returns>Retruns the array of splitted text.</returns>
</member>
<member name="M:Syncfusion.Office.TextSplitter.SplitTextByConsecutiveLtrAndRtl(System.String,System.Boolean,System.Boolean,System.Collections.Generic.List{Syncfusion.Office.CharacterRangeType}@,System.Nullable{System.Boolean}@,System.Boolean@)">
<summary>
Split the text by consicutive LTR and RTL
</summary>
<param name="text">Represent the source text to split</param>
<param name="isTextBidi">Represent text range bidi</param>
<param name="isRTLLang">Represent bidi language of text range</param>
<param name="characterRangeTypes">Represent characterRangeType collection</param>
<param name="isPrevLTRText">Represent whether previous text is LTR or not</param>
<returns></returns>
</member>
<member name="M:Syncfusion.Office.TextSplitter.IsRTLChar(System.Char)">
<summary>
To check whether the specified character is RTL character or not.
</summary>
<param name="character">Specify the character</param>
<returns>Return true if the specified character is RTL character</returns>
</member>
<member name="M:Syncfusion.Office.TextSplitter.IsNonWordSplitCharacter(System.String)">
<summary>
To check whether the specified string is non-word split character (%$#).
</summary>
<param name="character">Specify the string to check</param>
<returns>Return true if the string is non-word split character</returns>
</member>
<member name="M:Syncfusion.Office.TextSplitter.IsNumberNonReversingCharacter(System.String,System.Boolean)">
<summary>
To check whether the specified character is act as non-word split character or not.
</summary>
<param name="character">Specify the character to check</param>
<param name="isTextBidi">Specify the text range bidi value</param>
<returns></returns>
</member>
<member name="M:Syncfusion.Office.TextSplitter.IsWordSplitChar(System.Char)">
<summary>
To check whether the specified character is word split character ([/;) or not.
</summary>
<param name="character">Specify the character</param>
<returns>Return true if the specified character is word split character</returns>
</member>
<member name="M:Syncfusion.Office.TextSplitter.IsArabicChar(System.Char)">
<summary>
To check whether the specified character is Arabic character or not.
</summary>
<param name="character">Specify the character</param>
<returns>Return true if the specified character is Arabic character</returns>
</member>
<member name="M:Syncfusion.Office.TextSplitter.IsHebrewChar(System.Char)">
<summary>
To check whether the specified character is Hebrew character or not.
</summary>
<param name="character">Specify the character</param>
<returns>Return true if the specified character is Hebrew character</returns>
</member>
<member name="M:Syncfusion.Office.TextSplitter.IsHindiChar(System.Char)">
<summary>
To check whether the specified character is Hindi character or not.
</summary>
<param name="character">Specify the character</param>
<returns>Return true if the specified character is Hindi character</returns>
</member>
<member name="M:Syncfusion.Office.TextSplitter.IsKoreanChar(System.Char)">
<summary>
To check whether the specified character is Korean character or not.
</summary>
<param name="character">Specify the character</param>
<returns>Return true if the specified character is Korean character</returns>
</member>
<member name="M:Syncfusion.Office.TextSplitter.IsJapanese(System.Char)">
<summary>
To check whether the specified character is Japanese character or not.
</summary>
<param name="character">Specify the character</param>
<returns>Return true if the specified character is Japanese character</returns>
</member>
<member name="M:Syncfusion.Office.TextSplitter.IsChineseChar(System.Char)">
<summary>
To check whether the specified character is Chinese character or not.
</summary>
<param name="character">Specify the character</param>
<returns>Return true if the specified character is Chinese character</returns>
</member>
<member name="T:Syncfusion.Office.LocaleIDs">
<summary>
Specifies the local ID's.
</summary>
</member>
<member name="F:Syncfusion.Office.LocaleIDs.af_ZA">
<summary>
African.
</summary>
</member>
<member name="F:Syncfusion.Office.LocaleIDs.sq_AL">
<summary>
Albanian.
</summary>
</member>
<member name="F:Syncfusion.Office.LocaleIDs.am_ET">
<summary>
Amharic.
</summary>
</member>
<member name="F:Syncfusion.Office.LocaleIDs.gsw_FR">
<summary>
Alsatian.
</summary>
</member>
<member name="F:Syncfusion.Office.LocaleIDs.ar_DZ">
<summary>
Arabic Algerian.
</summary>
</member>
<member name="F:Syncfusion.Office.LocaleIDs.ar_BH">
<summary>
Arabic Bahraini.
</summary>
</member>
<member name="F:Syncfusion.Office.LocaleIDs.ar_EG">
<summary>
Arabic Egyptian.
</summary>
</member>
<member name="F:Syncfusion.Office.LocaleIDs.ar_IQ">
<summary>
Arabic Iraqi.
</summary>
</member>
<member name="F:Syncfusion.Office.LocaleIDs.ar_JO">
<summary>
Arabic Jordanian.
</summary>
</member>
<member name="F:Syncfusion.Office.LocaleIDs.ar_KW">
<summary>
Arabic Kuwaiti.
</summary>
</member>
<member name="F:Syncfusion.Office.LocaleIDs.ar_LB">
<summary>
Arabic Lebanese.
</summary>
</member>
<member name="F:Syncfusion.Office.LocaleIDs.ar_LY">
<summary>
Arabic Libyan.
</summary>
</member>
<member name="F:Syncfusion.Office.LocaleIDs.ar_MA">
<summary>
Arabic Moroccan.
</summary>
</member>
<member name="F:Syncfusion.Office.LocaleIDs.ar_OM">
<summary>
Arabic Omani.
</summary>
</member>
<member name="F:Syncfusion.Office.LocaleIDs.ar_QA">
<summary>
Arabic Qatari.
</summary>
</member>
<member name="F:Syncfusion.Office.LocaleIDs.ar_SA">
<summary>
Arabic Saudi.
</summary>
</member>
<member name="F:Syncfusion.Office.LocaleIDs.ar_SY">
<summary>
Arabic Syrian.
</summary>
</member>
<member name="F:Syncfusion.Office.LocaleIDs.ar_TN">
<summary>
Arabic Tunisian.
</summary>
</member>
<member name="F:Syncfusion.Office.LocaleIDs.ar_AE">
<summary>
Arabic United Arab Emirates.
</summary>
</member>
<member name="F:Syncfusion.Office.LocaleIDs.ar_YE">
<summary>
Arabic Yemeni.
</summary>
</member>
<member name="F:Syncfusion.Office.LocaleIDs.hy_AM">
<summary>
Armenian.
</summary>
</member>
<member name="F:Syncfusion.Office.LocaleIDs.as_IN">
<summary>
Assamese.
</summary>
</member>
<member name="F:Syncfusion.Office.LocaleIDs.az_Cyrl_AZ">
<summary>
Azeri Cyrillic.
</summary>
</member>
<member name="F:Syncfusion.Office.LocaleIDs.az_Latn_AZ">
<summary>
Azeri Latin.
</summary>
</member>
<member name="F:Syncfusion.Office.LocaleIDs.ba_RU">
<summary>
Bashkir.
</summary>
</member>
<member name="F:Syncfusion.Office.LocaleIDs.eu_ES">
<summary>
Basque.
</summary>
</member>
<member name="F:Syncfusion.Office.LocaleIDs.be_BY">
<summary>
Belarusian.
</summary>
</member>
<member name="F:Syncfusion.Office.LocaleIDs.bn_BD">
<summary>
Bengali (Bangladesh).
</summary>
</member>
<member name="F:Syncfusion.Office.LocaleIDs.bn_IN">
<summary>
Bengali (India).
</summary>
</member>
<member name="F:Syncfusion.Office.LocaleIDs.bs_Cyrl_BA">
<summary>
Bosnian (Cyrillic, Bosnia and Herzegovina).
</summary>
</member>
<member name="F:Syncfusion.Office.LocaleIDs.bs_Latn_BA">
<summary>
Bosnian (Bosnia/Herzegovina).
</summary>
</member>
<member name="F:Syncfusion.Office.LocaleIDs.bg_BG">
<summary>
Bulgarian.
</summary>
</member>
<member name="F:Syncfusion.Office.LocaleIDs.br_FR">
<summary>
Breton.
</summary>
</member>
<member name="F:Syncfusion.Office.LocaleIDs.my_MM">
<summary>
Burmese.
</summary>
</member>
<member name="F:Syncfusion.Office.LocaleIDs.ca_ES">
<summary>
Catalan.
</summary>
</member>
<member name="F:Syncfusion.Office.LocaleIDs.chr_US">
<summary>
Cherokee - United States.
</summary>
</member>
<member name="F:Syncfusion.Office.LocaleIDs.zh_HK">
<summary>
Chinese - Hong Kong SAR.
</summary>
</member>
<member name="F:Syncfusion.Office.LocaleIDs.zh_MO">
<summary>
Chinese - Macao SAR.
</summary>
</member>
<member name="F:Syncfusion.Office.LocaleIDs.zh_CN">
<summary>
Chinese - People's Republic of China.
</summary>
</member>
<member name="F:Syncfusion.Office.LocaleIDs.zh_SG">
<summary>
Chinese - Singapore.
</summary>
</member>
<member name="F:Syncfusion.Office.LocaleIDs.zh_TW">
<summary>
Chinese - Taiwan.
</summary>
</member>
<member name="F:Syncfusion.Office.LocaleIDs.co_FR">
<summary>
Corsican.
</summary>
</member>
<member name="F:Syncfusion.Office.LocaleIDs.hr_BA">
<summary>
Croatian (Bosnia/Herzegovina).
</summary>
</member>
<member name="F:Syncfusion.Office.LocaleIDs.hr_HR">
<summary>
Croatian.
</summary>
</member>
<member name="F:Syncfusion.Office.LocaleIDs.cs_CZ">
<summary>
Czech.
</summary>
</member>
<member name="F:Syncfusion.Office.LocaleIDs.da_DK">
<summary>
Danish.
</summary>
</member>
<member name="F:Syncfusion.Office.LocaleIDs.prs_AF">
<summary>
Dari.
</summary>
</member>
<member name="F:Syncfusion.Office.LocaleIDs.dv_MV">
<summary>
Divehi.
</summary>
</member>
<member name="F:Syncfusion.Office.LocaleIDs.nl_BE">
<summary>
Dutch - Belgium.
</summary>
</member>
<member name="F:Syncfusion.Office.LocaleIDs.nl_NL">
<summary>
Dutch - Netherlands.
</summary>
</member>
<member name="F:Syncfusion.Office.LocaleIDs.bin_NG">
<summary>
Edo.
</summary>
</member>
<member name="F:Syncfusion.Office.LocaleIDs.et_EE">
<summary>
Estonian.
</summary>
</member>
<member name="F:Syncfusion.Office.LocaleIDs.en_AU">
<summary>
English - Australia.
</summary>
</member>
<member name="F:Syncfusion.Office.LocaleIDs.en_BZ">
<summary>
English - Belize.
</summary>
</member>
<member name="F:Syncfusion.Office.LocaleIDs.en_CA">
<summary>
English - Canada.
</summary>
</member>
<member name="F:Syncfusion.Office.LocaleIDs.en_029">
<summary>
English - Caribbean.
</summary>
</member>
<member name="F:Syncfusion.Office.LocaleIDs.en_HK">
<summary>
English - Hong Kong SAR.
</summary>
</member>
<member name="F:Syncfusion.Office.LocaleIDs.en_IN">
<summary>
English - India.
</summary>
</member>
<member name="F:Syncfusion.Office.LocaleIDs.en_ID">
<summary>
English - Indonesia.
</summary>
</member>
<member name="F:Syncfusion.Office.LocaleIDs.en_IE">
<summary>
English - Ireland.
</summary>
</member>
<member name="F:Syncfusion.Office.LocaleIDs.en_JM">
<summary>
English - Jamaica.
</summary>
</member>
<member name="F:Syncfusion.Office.LocaleIDs.en_MY">
<summary>
English - Malaysia.
</summary>
</member>
<member name="F:Syncfusion.Office.LocaleIDs.en_NZ">
<summary>
English - New Zealand.
</summary>
</member>
<member name="F:Syncfusion.Office.LocaleIDs.en_PH">
<summary>
English - Philippines.
</summary>
</member>
<member name="F:Syncfusion.Office.LocaleIDs.en_SG">
<summary>
English - Singapore.
</summary>
</member>
<member name="F:Syncfusion.Office.LocaleIDs.en_ZA">
<summary>
English - South Africa.
</summary>
</member>
<member name="F:Syncfusion.Office.LocaleIDs.en_TT">
<summary>
English - Trinidad.
</summary>
</member>
<member name="F:Syncfusion.Office.LocaleIDs.en_GB">
<summary>
English - United Kingdom.
</summary>
</member>
<member name="F:Syncfusion.Office.LocaleIDs.en_US">
<summary>
English - United States.
</summary>
</member>
<member name="F:Syncfusion.Office.LocaleIDs.en_ZW">
<summary>
English - Zimbabwe.
</summary>
</member>
<member name="F:Syncfusion.Office.LocaleIDs.fo_FO">
<summary>
Faroese.
</summary>
</member>
<member name="F:Syncfusion.Office.LocaleIDs.fil_PH">
<summary>
Filipino.
</summary>
</member>
<member name="F:Syncfusion.Office.LocaleIDs.fi_FI">
<summary>
Finnish.
</summary>
</member>
<member name="F:Syncfusion.Office.LocaleIDs.fr_BE">
<summary>
French - Belgium.
</summary>
</member>
<member name="F:Syncfusion.Office.LocaleIDs.fr_CM">
<summary>
French - Cameroon.
</summary>
</member>
<member name="F:Syncfusion.Office.LocaleIDs.fr_CA">
<summary>
French - Canada.
</summary>
</member>
<member name="F:Syncfusion.Office.LocaleIDs.fr_CD">
<summary>
French - Democratic Rep. of Congo.
</summary>
</member>
<member name="F:Syncfusion.Office.LocaleIDs.fr_CI">
<summary>
French - Cote d'Ivoire.
</summary>
</member>
<member name="F:Syncfusion.Office.LocaleIDs.fr_FR">
<summary>
French - France.
</summary>
</member>
<member name="F:Syncfusion.Office.LocaleIDs.fr_HT">
<summary>
French - Haiti.
</summary>
</member>
<member name="F:Syncfusion.Office.LocaleIDs.fr_LU">
<summary>
French - Luxembourg.
</summary>
</member>
<member name="F:Syncfusion.Office.LocaleIDs.fr_ML">
<summary>
French - Mali.
</summary>
</member>
<member name="F:Syncfusion.Office.LocaleIDs.fr_MC">
<summary>
French - Monaco.
</summary>
</member>
<member name="F:Syncfusion.Office.LocaleIDs.fr_MA">
<summary>
French - Morocco.
</summary>
</member>
<member name="F:Syncfusion.Office.LocaleIDs.fr_RE">
<summary>
French - Reunion.
</summary>
</member>
<member name="F:Syncfusion.Office.LocaleIDs.fr_SN">
<summary>
French - Senegal.
</summary>
</member>
<member name="F:Syncfusion.Office.LocaleIDs.fr_CH">
<summary>
French - Switzerland.
</summary>
</member>
<member name="F:Syncfusion.Office.LocaleIDs.fr_fr_WINDIES">
<summary>
French - West Indies.
</summary>
</member>
<member name="F:Syncfusion.Office.LocaleIDs.fy_NL">
<summary>
Frisian - Netherlands.
</summary>
</member>
<member name="F:Syncfusion.Office.LocaleIDs.ff_NG">
<summary>
Fulfulde - Nigeria.
</summary>
</member>
<member name="F:Syncfusion.Office.LocaleIDs.gd_GB">
<summary>
Scottish Gaelic.
</summary>
</member>
<member name="F:Syncfusion.Office.LocaleIDs.gl_ES">
<summary>
Galician.
</summary>
</member>
<member name="F:Syncfusion.Office.LocaleIDs.ka_GE">
<summary>
Georgian.
</summary>
</member>
<member name="F:Syncfusion.Office.LocaleIDs.de_AT">
<summary>
German - Austria.
</summary>
</member>
<member name="F:Syncfusion.Office.LocaleIDs.de_DE">
<summary>
German - Germany.
</summary>
</member>
<member name="F:Syncfusion.Office.LocaleIDs.de_LI">
<summary>
German - Liechtenstein.
</summary>
</member>
<member name="F:Syncfusion.Office.LocaleIDs.de_LU">
<summary>
German - Luxembourg.
</summary>
</member>
<member name="F:Syncfusion.Office.LocaleIDs.de_CH">
<summary>
German - Switzerland.
</summary>
</member>
<member name="F:Syncfusion.Office.LocaleIDs.el_GR">
<summary>
Greek.
</summary>
</member>
<member name="F:Syncfusion.Office.LocaleIDs.gn_PY">
<summary>
Guarani - Paraguay.
</summary>
</member>
<member name="F:Syncfusion.Office.LocaleIDs.gu_IN">
<summary>
Gujarati.
</summary>
</member>
<member name="F:Syncfusion.Office.LocaleIDs.kl_GL">
<summary>
Greenlandic.
</summary>
</member>
<member name="F:Syncfusion.Office.LocaleIDs.ha_Latn_NG">
<summary>
Hausa - Nigeria.
</summary>
</member>
<member name="F:Syncfusion.Office.LocaleIDs.haw_US">
<summary>
Hawaiian - United States.
</summary>
</member>
<member name="F:Syncfusion.Office.LocaleIDs.he_IL">
<summary>
Hebrew.
</summary>
</member>
<member name="F:Syncfusion.Office.LocaleIDs.hi_IN">
<summary>
Hindi.
</summary>
</member>
<member name="F:Syncfusion.Office.LocaleIDs.hu_HU">
<summary>
Hungarian.
</summary>
</member>
<member name="F:Syncfusion.Office.LocaleIDs.ibb_NG">
<summary>
Ibibio - Nigeria.
</summary>
</member>
<member name="F:Syncfusion.Office.LocaleIDs.is_IS">
<summary>
Icelandic.
</summary>
</member>
<member name="F:Syncfusion.Office.LocaleIDs.ig_NG">
<summary>
Igbo - Nigeria.
</summary>
</member>
<member name="F:Syncfusion.Office.LocaleIDs.id_ID">
<summary>
Indonesian.
</summary>
</member>
<member name="F:Syncfusion.Office.LocaleIDs.iu_Latn_CA">
<summary>
Inuktitut (Latin, Canada).
</summary>
</member>
<member name="F:Syncfusion.Office.LocaleIDs.iu_Cans_CA">
<summary>
Inuktitut.
</summary>
</member>
<member name="F:Syncfusion.Office.LocaleIDs.it_IT">
<summary>
Italian - Italy.
</summary>
</member>
<member name="F:Syncfusion.Office.LocaleIDs.it_CH">
<summary>
Italian - Switzerland.
</summary>
</member>
<member name="F:Syncfusion.Office.LocaleIDs.ga_IE">
<summary>
Irish.
</summary>
</member>
<member name="F:Syncfusion.Office.LocaleIDs.xh_ZA">
<summary>
Xhosa.
</summary>
</member>
<member name="F:Syncfusion.Office.LocaleIDs.zu_ZA">
<summary>
Zulu.
</summary>
</member>
<member name="F:Syncfusion.Office.LocaleIDs.kn_IN">
<summary>
Kannada (India).
</summary>
</member>
<member name="F:Syncfusion.Office.LocaleIDs.kr_NG">
<summary>
Kanuri - Nigeria.
</summary>
</member>
<member name="F:Syncfusion.Office.LocaleIDs.ks_Deva">
<summary>
Kashmiri.
</summary>
</member>
<member name="F:Syncfusion.Office.LocaleIDs.ks_Arab">
<summary>
Kashmiri (Arabic).
</summary>
</member>
<member name="F:Syncfusion.Office.LocaleIDs.kk_KZ">
<summary>
Kazakh.
</summary>
</member>
<member name="F:Syncfusion.Office.LocaleIDs.km_KH">
<summary>
Khmer.
</summary>
</member>
<member name="F:Syncfusion.Office.LocaleIDs.kok_IN">
<summary>
Konkani.
</summary>
</member>
<member name="F:Syncfusion.Office.LocaleIDs.ko_KR">
<summary>
Korean.
</summary>
</member>
<member name="F:Syncfusion.Office.LocaleIDs.ky_KG">
<summary>
Kyrgyz (Cyrillic).
</summary>
</member>
<member name="F:Syncfusion.Office.LocaleIDs.qut_GT">
<summary>
K'iche.
</summary>
</member>
<member name="F:Syncfusion.Office.LocaleIDs.rw_RW">
<summary>
Kinyarwanda.
</summary>
</member>
<member name="F:Syncfusion.Office.LocaleIDs.lo_LA">
<summary>
Lao.
</summary>
</member>
<member name="F:Syncfusion.Office.LocaleIDs.la_Latn">
<summary>
Latin.
</summary>
</member>
<member name="F:Syncfusion.Office.LocaleIDs.lv_LV">
<summary>
Latvian.
</summary>
</member>
<member name="F:Syncfusion.Office.LocaleIDs.lt_LT">
<summary>
Lithuanian.
</summary>
</member>
<member name="F:Syncfusion.Office.LocaleIDs.dsb_DE">
<summary>
Lower Sorbian (Germany).
</summary>
</member>
<member name="F:Syncfusion.Office.LocaleIDs.lb_LU">
<summary>
Luxembourgish.
</summary>
</member>
<member name="F:Syncfusion.Office.LocaleIDs.mk_MK">
<summary>
FYRO Macedonian.
</summary>
</member>
<member name="F:Syncfusion.Office.LocaleIDs.ms_BN">
<summary>
Malay - Brunei Darussalam.
</summary>
</member>
<member name="F:Syncfusion.Office.LocaleIDs.ms_MY">
<summary>
Malay - Malaysia.
</summary>
</member>
<member name="F:Syncfusion.Office.LocaleIDs.ml_IN">
<summary>
Malayalam.
</summary>
</member>
<member name="F:Syncfusion.Office.LocaleIDs.mt_MT">
<summary>
Maltese.
</summary>
</member>
<member name="F:Syncfusion.Office.LocaleIDs.mni_IN">
<summary>
Manipuri.
</summary>
</member>
<member name="F:Syncfusion.Office.LocaleIDs.mi_NZ">
<summary>
Maori - New Zealand.
</summary>
</member>
<member name="F:Syncfusion.Office.LocaleIDs.mr_IN">
<summary>
Marathi.
</summary>
</member>
<member name="F:Syncfusion.Office.LocaleIDs.arn_CL">
<summary>
Mapudungun.
</summary>
</member>
<member name="F:Syncfusion.Office.LocaleIDs.mn_MN">
<summary>
Mongolian (Cyrillic).
</summary>
</member>
<member name="F:Syncfusion.Office.LocaleIDs.mn_Mong_CN">
<summary>
Mongolian (Mongolian).
</summary>
</member>
<member name="F:Syncfusion.Office.LocaleIDs.ne_NP">
<summary>
Nepali.
</summary>
</member>
<member name="F:Syncfusion.Office.LocaleIDs.ne_IN">
<summary>
Nepali - India.
</summary>
</member>
<member name="F:Syncfusion.Office.LocaleIDs.nb_NO">
<summary>
Norwegian (Bokml).
</summary>
</member>
<member name="F:Syncfusion.Office.LocaleIDs.nn_NO">
<summary>
Norwegian (Nynorsk).
</summary>
</member>
<member name="F:Syncfusion.Office.LocaleIDs.oc_FR">
<summary>
Occitan.
</summary>
</member>
<member name="F:Syncfusion.Office.LocaleIDs.or_IN">
<summary>
Oriya.
</summary>
</member>
<member name="F:Syncfusion.Office.LocaleIDs.om_Ethi_ET">
<summary>
Oromo.
</summary>
</member>
<member name="F:Syncfusion.Office.LocaleIDs.pap_AN">
<summary>
Papiamentu.
</summary>
</member>
<member name="F:Syncfusion.Office.LocaleIDs.ps_AF">
<summary>
Pashto.
</summary>
</member>
<member name="F:Syncfusion.Office.LocaleIDs.fa_IR">
<summary>
Farsi.
</summary>
</member>
<member name="F:Syncfusion.Office.LocaleIDs.pl_PL">
<summary>
Polish.
</summary>
</member>
<member name="F:Syncfusion.Office.LocaleIDs.pt_BR">
<summary>
Portuguese - Brazil.
</summary>
</member>
<member name="F:Syncfusion.Office.LocaleIDs.pt_PT">
<summary>
Portuguese - Portugal.
</summary>
</member>
<member name="F:Syncfusion.Office.LocaleIDs.pa_IN">
<summary>
Punjabi (India).
</summary>
</member>
<member name="F:Syncfusion.Office.LocaleIDs.pa_PK">
<summary>
Punjabi (Pakistan).
</summary>
</member>
<member name="F:Syncfusion.Office.LocaleIDs.quz_BO">
<summary>
Quecha - Bolivia.
</summary>
</member>
<member name="F:Syncfusion.Office.LocaleIDs.guz_EC">
<summary>
Quecha - Ecuador.
</summary>
</member>
<member name="F:Syncfusion.Office.LocaleIDs.guz_PE">
<summary>
Quecha - Peru.
</summary>
</member>
<member name="F:Syncfusion.Office.LocaleIDs.ro_RO">
<summary>
Romanian.
</summary>
</member>
<member name="F:Syncfusion.Office.LocaleIDs.ro_MO">
<summary>
Romanian - Moldava.
</summary>
</member>
<member name="F:Syncfusion.Office.LocaleIDs.rm_CH">
<summary>
Rhaeto-Romanic.
</summary>
</member>
<member name="F:Syncfusion.Office.LocaleIDs.ru_RU">
<summary>
Russian.
</summary>
</member>
<member name="F:Syncfusion.Office.LocaleIDs.ru_MO">
<summary>
Russian - Moldava.
</summary>
</member>
<member name="F:Syncfusion.Office.LocaleIDs.smn_FI">
<summary>
Sami, Inari (Finland).
</summary>
</member>
<member name="F:Syncfusion.Office.LocaleIDs.smj_NO">
<summary>
Sami, Lule (Norway).
</summary>
</member>
<member name="F:Syncfusion.Office.LocaleIDs.smj_SE">
<summary>
Sami, Lule (Sweden).
</summary>
</member>
<member name="F:Syncfusion.Office.LocaleIDs.se_FI">
<summary>
Sami, Northern (Finland).
</summary>
</member>
<member name="F:Syncfusion.Office.LocaleIDs.se_NO">
<summary>
Sami (Lappish).
</summary>
</member>
<member name="F:Syncfusion.Office.LocaleIDs.se_SE">
<summary>
Sami, Northern (Sweden).
</summary>
</member>
<member name="F:Syncfusion.Office.LocaleIDs.sms_FI">
<summary>
Sami, Skolt (Finland).
</summary>
</member>
<member name="F:Syncfusion.Office.LocaleIDs.sma_NO">
<summary>
Sami, Southern (Norway).
</summary>
</member>
<member name="F:Syncfusion.Office.LocaleIDs.sma_SE">
<summary>
Sami, Southern (Sweden).
</summary>
</member>
<member name="F:Syncfusion.Office.LocaleIDs.sa_IN">
<summary>
Sanskrit - India.
</summary>
</member>
<member name="F:Syncfusion.Office.LocaleIDs.sr_Cyrl_BA">
<summary>
Serbian (Cyrillic, Bosnia and Herzegovina).
</summary>
</member>
<member name="F:Syncfusion.Office.LocaleIDs.sr_Cyrl_CS">
<summary>
Serbian (Cyrillic).
</summary>
</member>
<member name="F:Syncfusion.Office.LocaleIDs.sr_Latn_BA">
<summary>
Serbian (Latin, Bosnia and Herzegovina).
</summary>
</member>
<member name="F:Syncfusion.Office.LocaleIDs.sr_Latn_CS">
<summary>
Serbian (Latin, Serbia and Montenegro (Former)).
</summary>
</member>
<member name="F:Syncfusion.Office.LocaleIDs.nso_ZA">
<summary>
Serbian (Latin).
</summary>
</member>
<member name="F:Syncfusion.Office.LocaleIDs.tn_ZA">
<summary>
Tswana.
</summary>
</member>
<member name="F:Syncfusion.Office.LocaleIDs.sd_Arab_PK">
<summary>
Sindhi - Pakistan.
</summary>
</member>
<member name="F:Syncfusion.Office.LocaleIDs.sd_Deva_IN">
<summary>
Sindhi - India.
</summary>
</member>
<member name="F:Syncfusion.Office.LocaleIDs.si_LK">
<summary>
Sinhalese - Sri Lanka.
</summary>
</member>
<member name="F:Syncfusion.Office.LocaleIDs.sk_SK">
<summary>
Slovak.
</summary>
</member>
<member name="F:Syncfusion.Office.LocaleIDs.sl_SI">
<summary>
Slovenian.
</summary>
</member>
<member name="F:Syncfusion.Office.LocaleIDs.so_SO">
<summary>
Somali.
</summary>
</member>
<member name="F:Syncfusion.Office.LocaleIDs.es_AR">
<summary>
Spanish - Argentina.
</summary>
</member>
<member name="F:Syncfusion.Office.LocaleIDs.es_BO">
<summary>
Spanish - Bolivia.
</summary>
</member>
<member name="F:Syncfusion.Office.LocaleIDs.es_CL">
<summary>
Spanish - Chile.
</summary>
</member>
<member name="F:Syncfusion.Office.LocaleIDs.es_CO">
<summary>
Spanish - Colombia.
</summary>
</member>
<member name="F:Syncfusion.Office.LocaleIDs.es_CR">
<summary>
Spanish - Costa Rica.
</summary>
</member>
<member name="F:Syncfusion.Office.LocaleIDs.es_DO">
<summary>
Spanish - Dominican Republic.
</summary>
</member>
<member name="F:Syncfusion.Office.LocaleIDs.es_EC">
<summary>
Spanish - Ecuador.
</summary>
</member>
<member name="F:Syncfusion.Office.LocaleIDs.es_SV">
<summary>
Spanish - El Salvador.
</summary>
</member>
<member name="F:Syncfusion.Office.LocaleIDs.es_GT">
<summary>
Spanish - Guatemala.
</summary>
</member>
<member name="F:Syncfusion.Office.LocaleIDs.es_HN">
<summary>
Spanish - Honduras.
</summary>
</member>
<member name="F:Syncfusion.Office.LocaleIDs.es_MX">
<summary>
Spanish - Mexico.
</summary>
</member>
<member name="F:Syncfusion.Office.LocaleIDs.es_NI">
<summary>
Spanish - Nicaragua.
</summary>
</member>
<member name="F:Syncfusion.Office.LocaleIDs.es_PA">
<summary>
Spanish - Panama.
</summary>
</member>
<member name="F:Syncfusion.Office.LocaleIDs.es_PY">
<summary>
Spanish - Paraguay.
</summary>
</member>
<member name="F:Syncfusion.Office.LocaleIDs.es_PE">
<summary>
Spanish - Peru.
</summary>
</member>
<member name="F:Syncfusion.Office.LocaleIDs.es_PR">
<summary>
Spanish - Puerto Rico.
</summary>
</member>
<member name="F:Syncfusion.Office.LocaleIDs.es_ES">
<summary>
Spanish - International Sort.
</summary>
</member>
<member name="F:Syncfusion.Office.LocaleIDs.es_ES_tradnl">
<summary>
Spanish - Spain (Traditional Sort).
</summary>
</member>
<member name="F:Syncfusion.Office.LocaleIDs.es_US">
<summary>
Spanish - United States.
</summary>
</member>
<member name="F:Syncfusion.Office.LocaleIDs.es_UY">
<summary>
Spanish - Uruguay.
</summary>
</member>
<member name="F:Syncfusion.Office.LocaleIDs.es_VE">
<summary>
Spanish - Venezuela.
</summary>
</member>
<member name="F:Syncfusion.Office.LocaleIDs.st_ZA">
<summary>
Sutu.
</summary>
</member>
<member name="F:Syncfusion.Office.LocaleIDs.sw_KE">
<summary>
Swahili.
</summary>
</member>
<member name="F:Syncfusion.Office.LocaleIDs.sv_FI">
<summary>
Swedish - Finland.
</summary>
</member>
<member name="F:Syncfusion.Office.LocaleIDs.sv_SE">
<summary>
Swedish.
</summary>
</member>
<member name="F:Syncfusion.Office.LocaleIDs.syr_SY">
<summary>
Syriac.
</summary>
</member>
<member name="F:Syncfusion.Office.LocaleIDs.tg_Cyrl_TJ">
<summary>
Tajik.
</summary>
</member>
<member name="F:Syncfusion.Office.LocaleIDs.tzm_Arab_MA">
<summary>
Tamazight.
</summary>
</member>
<member name="F:Syncfusion.Office.LocaleIDs.tzm_Latn_DZ">
<summary>
Tamazight (Latin).
</summary>
</member>
<member name="F:Syncfusion.Office.LocaleIDs.ta_IN">
<summary>
Tamil.
</summary>
</member>
<member name="F:Syncfusion.Office.LocaleIDs.tt_RU">
<summary>
Tatar.
</summary>
</member>
<member name="F:Syncfusion.Office.LocaleIDs.te_IN">
<summary>
Telugu.
</summary>
</member>
<member name="F:Syncfusion.Office.LocaleIDs.th_TH">
<summary>
Thai.
</summary>
</member>
<member name="F:Syncfusion.Office.LocaleIDs.bo_CN">
<summary>
Tibetan (PRC).
</summary>
</member>
<member name="F:Syncfusion.Office.LocaleIDs.ti_ER">
<summary>
Tigrigna (Eritrea).
</summary>
</member>
<member name="F:Syncfusion.Office.LocaleIDs.ti_ET">
<summary>
Tigrigna (Ethiopia).
</summary>
</member>
<member name="F:Syncfusion.Office.LocaleIDs.ts_ZA">
<summary>
Tsonga.
</summary>
</member>
<member name="F:Syncfusion.Office.LocaleIDs.tr_TR">
<summary>
Turkish.
</summary>
</member>
<member name="F:Syncfusion.Office.LocaleIDs.tk_TM">
<summary>
Turkmen.
</summary>
</member>
<member name="F:Syncfusion.Office.LocaleIDs.ug_CN">
<summary>
Uighur - China.
</summary>
</member>
<member name="F:Syncfusion.Office.LocaleIDs.uk_UA">
<summary>
Ukrainian.
</summary>
</member>
<member name="F:Syncfusion.Office.LocaleIDs.hsb_DE">
<summary>
Sorbian.
</summary>
</member>
<member name="F:Syncfusion.Office.LocaleIDs.ur_PK">
<summary>
Urdu.
</summary>
</member>
<member name="F:Syncfusion.Office.LocaleIDs.uz_Cyrl_UZ">
<summary>
Uzbek (Cyrillic).
</summary>
</member>
<member name="F:Syncfusion.Office.LocaleIDs.uz_Latn_UZ">
<summary>
Uzbek (Latin).
</summary>
</member>
<member name="F:Syncfusion.Office.LocaleIDs.ve_ZA">
<summary>
Venda.
</summary>
</member>
<member name="F:Syncfusion.Office.LocaleIDs.vi_VN">
<summary>
Vietnamese.
</summary>
</member>
<member name="F:Syncfusion.Office.LocaleIDs.cy_GB">
<summary>
Welsh.
</summary>
</member>
<member name="F:Syncfusion.Office.LocaleIDs.wo_SN">
<summary>
Wolof.
</summary>
</member>
<member name="F:Syncfusion.Office.LocaleIDs.sah_RU">
<summary>
Yakut.
</summary>
</member>
<member name="F:Syncfusion.Office.LocaleIDs.ii_CN">
<summary>
Yi.
</summary>
</member>
<member name="F:Syncfusion.Office.LocaleIDs.yi_Hebr">
<summary>
Yiddish.
</summary>
</member>
<member name="F:Syncfusion.Office.LocaleIDs.yo_NG">
<summary>
Yoruba.
</summary>
</member>
<member name="F:Syncfusion.Office.LocaleIDs.ja_JP">
<summary>
Japanese.
</summary>
</member>
<member name="T:Syncfusion.Office.FontScriptType">
<summary>
Used to represent the font script type of the text.
</summary>
</member>
<member name="T:Syncfusion.Office.CharacterRangeType">
<summary>
Used to represent the character range type of the text.
</summary>
</member>
<member name="T:Syncfusion.Office.OwnerHolder">
<summary>
Provides the base implementation for all the classes with holder behavior.
</summary>
</member>
<member name="T:Syncfusion.Office.IOfficeMathEntity">
<summary>
Represents Office Math entity.
</summary>
</member>
<member name="P:Syncfusion.Office.IOfficeMathEntity.OwnerMathEntity">
<summary>
Gets the owner.
</summary>
</member>
<member name="F:Syncfusion.Office.OwnerHolder.m_owner">
<summary>
Specifies the OwnerHolder.
</summary>
</member>
<member name="M:Syncfusion.Office.OwnerHolder.#ctor(Syncfusion.Office.IOfficeMathEntity)">
<summary>
Initializes a new instance of the <see cref="T:Syncfusion.Office.OwnerHolder"/> class.
</summary>
</member>
<member name="M:Syncfusion.Office.OwnerHolder.SetOwner(Syncfusion.Office.IOfficeMathEntity)">
<summary>
Sets the owner.
</summary>
</member>
<member name="M:Syncfusion.Office.OwnerHolder.Close">
<summary>
Closes this instance.
</summary>
</member>
<member name="P:Syncfusion.Office.OwnerHolder.OwnerMathEntity">
<summary>
Gets the owner.
</summary>
</member>
<member name="M:Syncfusion.Office.MatrixColumnProperties.Clone(Syncfusion.Office.IOfficeMathEntity)">
<summary>
Clones the item
</summary>
<returns></returns>
</member>
<member name="M:Syncfusion.Office.MatrixColumnProperties.Close">
<summary>
Closes the instances.
</summary>
</member>
<member name="P:Syncfusion.Office.MatrixColumnProperties.Count">
<summary>
Gets an integer that represents the number of columns the property is applied to
</summary>
</member>
<member name="P:Syncfusion.Office.MatrixColumnProperties.Alignment">
<summary>
Gets or sets a MathHorizontalAlignment constant that represents the horizontal alignment for arguments in a matrix column.
</summary>
</member>
<member name="T:Syncfusion.Office.CollectionImpl">
<summary>
Represents the collection interface.
</summary>
</member>
<member name="T:Syncfusion.Office.ICollectionBase">
<summary>
Represents base interface for collections.
</summary>
</member>
<member name="M:Syncfusion.Office.ICollectionBase.Remove(Syncfusion.Office.IOfficeMathEntity)">
<summary>
Removes the item from the collection.
</summary>
<param name="item">Represents a <see cref="T:Syncfusion.Office.IOfficeMathEntity"/> to remove.</param>
</member>
<member name="M:Syncfusion.Office.ICollectionBase.Clear">
<summary>
Removes all items from the collection.
</summary>
</member>
<member name="P:Syncfusion.Office.ICollectionBase.Count">
<summary>
Gets the number of items in collection.
</summary>
<value>The <b>integer</b> represents the count of the items.</value>
</member>
<member name="M:Syncfusion.Office.CollectionImpl.#ctor(Syncfusion.Office.IOfficeMathEntity)">
<summary>
Initializes a new instance of the <see cref="T:Syncfusion.Office.CollectionImpl"/> class.
</summary>
</member>
<member name="M:Syncfusion.Office.CollectionImpl.Close">
<summary>
Closes this instance.
</summary>
</member>
<member name="M:Syncfusion.Office.CollectionImpl.Add(System.Object)">
<summary>
Adds the item in collection
</summary>
</member>
<member name="M:Syncfusion.Office.CollectionImpl.Remove(Syncfusion.Office.IOfficeMathEntity)">
<summary>
Removes the item in collection
</summary>
<param name="item">Represents a <see cref="T:Syncfusion.Office.IOfficeMathEntity"/> to remove.</param>
</member>
<member name="M:Syncfusion.Office.CollectionImpl.Clear">
<summary>
Removes all items from the collection.
</summary>
</member>
<member name="P:Syncfusion.Office.CollectionImpl.Count">
<summary>
Gets the number of Math in the document.
</summary>
</member>
<member name="P:Syncfusion.Office.CollectionImpl.InnerList">
<summary>
Gets the innerList.
</summary>
</member>
<member name="T:Syncfusion.Office.DocumentParser">
<summary>
Represents an abstract class to read MathML item and its format in document
</summary>
</member>
<member name="M:Syncfusion.Office.DocumentParser.ParseMathControlFormat(System.Xml.XmlReader,Syncfusion.Office.IOfficeMathFunctionBase)">
<summary>
Parse the control properties of MathML elements.
</summary>
</member>
<member name="M:Syncfusion.Office.DocumentParser.ParseMathRun(System.Xml.XmlReader,Syncfusion.Office.IOfficeMathRunElement)">
<summary>
Parse the MathML run elements.
</summary>
</member>
<member name="T:Syncfusion.Office.DocumentSerializer">
<summary>
Represents an abstract class to write the MathML item and its format in document
</summary>
</member>
<member name="M:Syncfusion.Office.DocumentSerializer.SerializeRunCharacterFormat(Syncfusion.Office.IOfficeMathRunElement)">
<summary>
Serializes the character format of Math run element
</summary>
</member>
<member name="M:Syncfusion.Office.DocumentSerializer.SerializeControlProperties(Syncfusion.Office.IOfficeRunFormat)">
<summary>
Serializes control properties of all functions in mathematical equation
</summary>
<param name="mathFunction">Represents a math function</param>
</member>
<member name="M:Syncfusion.Office.DocumentSerializer.SerializeMathRun(Syncfusion.Office.IOfficeMathRunElement)">
<summary>
Serializes paragraph items.
</summary>
</member>
<member name="T:Syncfusion.Office.IOfficeMathBar">
<summary>
Represents an equation with a bar above or below the base.
</summary>
</member>
<member name="T:Syncfusion.Office.IOfficeMathFunctionBase">
<summary>
Represents the Mathematical function.
</summary>
</member>
<member name="P:Syncfusion.Office.IOfficeMathFunctionBase.Type">
<summary>
Gets the type of the mathematical function.Read-Only.
</summary>
</member>
<member name="P:Syncfusion.Office.IOfficeMathBar.BarTop">
<summary>
Gets or sets a boolean that represents the position of a bar in a bar object.
</summary>
</member>
<member name="P:Syncfusion.Office.IOfficeMathBar.Equation">
<summary>
Gets a <see cref="T:Syncfusion.Office.OfficeMath"/> object that represents the base of the specified equation object.
</summary>
</member>
<member name="P:Syncfusion.Office.IOfficeMathBar.ControlProperties">
<summary>
Gets or sets the <see cref="T:Syncfusion.Office.IOfficeRunFormat"/> object that represent the control property of MathML function.
</summary>
</member>
<member name="T:Syncfusion.Office.IOfficeMathBorderBox">
<summary>
Represents an interface for border box.
</summary>
</member>
<member name="P:Syncfusion.Office.IOfficeMathBorderBox.HideTop">
<summary>
Gets or sets a value that represents whether to hide the top border of an equation's bounding box.
</summary>
<value><b>True</b> if to hide the top border; otherwise, <b>false</b>.</value>
</member>
<member name="P:Syncfusion.Office.IOfficeMathBorderBox.HideBottom">
<summary>
Gets or sets a value that represents whether to hide the bottom border of an equation's bounding box.
</summary>
<value><b>True</b> if to hide the bottom border; otherwise, <b>false</b>.</value>
</member>
<member name="P:Syncfusion.Office.IOfficeMathBorderBox.HideRight">
<summary>
Gets or sets a value that represents whether to hide the right border of an equation's bounding box.
</summary>
<value><b>True</b> if to hide the right border; otherwise, <b>false</b>.</value>
</member>
<member name="P:Syncfusion.Office.IOfficeMathBorderBox.HideLeft">
<summary>
Gets or sets a value that represents whether to hide the left border of an equation's bounding box.
</summary>
<value><b>True</b> if to hide the left border; otherwise, <b>false</b>.</value>
</member>
<member name="P:Syncfusion.Office.IOfficeMathBorderBox.StrikeDiagonalUp">
<summary>
Gets or sets a value that represents a diagonal strikethrough from lower left to upper right.
</summary>
<value><b>True</b> if diagonal strikethrough from lower left to upper right; otherwise, <b>false</b>.</value>
</member>
<member name="P:Syncfusion.Office.IOfficeMathBorderBox.StrikeDiagonalDown">
<summary>
Gets or sets a value that represents a diagonal strikethrough from upper left to lower right.
</summary>
<value><b>True</b> if diagonal strikethrough from upper left to lower right; otherwise, <b>false</b>.</value>
</member>
<member name="P:Syncfusion.Office.IOfficeMathBorderBox.StrikeVertical">
<summary>
Gets or sets a value that represents a vertical strikethrough.
</summary>
<value><b>True</b> if vertical strikethrough ; otherwise, <b>false</b>.</value>
</member>
<member name="P:Syncfusion.Office.IOfficeMathBorderBox.StrikeHorizontal">
<summary>
Gets or sets a value that represents a Horizontal strikethrough.
</summary>
<value><b>True</b> if horizontal strikethrough; otherwise, <b>false</b>.</value>
</member>
<member name="P:Syncfusion.Office.IOfficeMathBorderBox.Equation">
<summary>
Specifies a <see cref="T:Syncfusion.Office.IOfficeMath"/> object that represents the base of the specified equation object.
</summary>
</member>
<member name="P:Syncfusion.Office.IOfficeMathBorderBox.ControlProperties">
<summary>
Gets or sets the <see cref="T:Syncfusion.Office.IOfficeRunFormat"/> object that represent the control property of MathML function.
</summary>
</member>
<member name="T:Syncfusion.Office.IOfficeMathBox">
<summary>
Represents an interface for Box function.
</summary>
</member>
<member name="P:Syncfusion.Office.IOfficeMathBox.Alignment">
<summary>
Gets or sets a value that represents if the operator emulator must be used as an alignment point from which the next line operator emulator starts.
</summary>
<value><b>True</b> if the operator emulator must be used as an alignment point; otherwise, <b>false</b>.</value>
</member>
<member name="P:Syncfusion.Office.IOfficeMathBox.EnableDifferential">
<summary>
Gets or sets a value that states whether the box acts as the mathematical differential.
</summary>
<value><b>True</b> if the box acts as the mathematical differential; otherwise, <b>false</b>.</value>
</member>
<member name="P:Syncfusion.Office.IOfficeMathBox.NoBreak">
<summary>
Gets or sets a value whether breaks are allowed inside the box object.
</summary>
<value><b>True</b> if breaks are allowed inside the box object; otherwise, <b>false</b>.</value>
</member>
<member name="P:Syncfusion.Office.IOfficeMathBox.OperatorEmulator">
<summary>
Gets or sets a value that states if the box and its contents behave as a single operator and inherit the properties of an operator.
</summary>
<value><b>True</b> if the box and its contents behave as a single operator and inherit the properties of an operator; otherwise, <b>false</b>.</value>
</member>
<member name="P:Syncfusion.Office.IOfficeMathBox.Break">
<summary>
Represents individual line breaks in an equation.
</summary>
</member>
<member name="P:Syncfusion.Office.IOfficeMathBox.Equation">
<summary>
Specifies a <see cref="T:Syncfusion.Office.OfficeMath"/> object that represents the base of the specified equation object.
</summary>
</member>
<member name="P:Syncfusion.Office.IOfficeMathBox.ControlProperties">
<summary>
Gets or sets the <see cref="T:Syncfusion.Office.IOfficeRunFormat"/> object that represent the control property of MathML function.
</summary>
</member>
<member name="T:Syncfusion.Office.IOfficeMathDelimiter">
<summary>
Represents an interface for Delimiter function.
</summary>
</member>
<member name="P:Syncfusion.Office.IOfficeMathDelimiter.BeginCharacter">
<summary>
Gets or sets a string that represents the beginning delimiter character.
</summary>
</member>
<member name="P:Syncfusion.Office.IOfficeMathDelimiter.EndCharacter">
<summary>
Gets or sets a string that represents the ending delimiter character.
</summary>
</member>
<member name="P:Syncfusion.Office.IOfficeMathDelimiter.IsGrow">
<summary>
Gets or sets a value that represents whether delimiter characters grow to the full height of the arguments that they contain.
</summary>
<value><b>True</b> if delimiter characters grow to the full height of the arguments that they contain; otherwise, <b>false</b>.</value>
</member>
<member name="P:Syncfusion.Office.IOfficeMathDelimiter.Seperator">
<summary>
Gets or sets a string that represents the separator character in a Math delimiter object when the Math delimiter object contains two or more arguments.
</summary>
</member>
<member name="P:Syncfusion.Office.IOfficeMathDelimiter.DelimiterShape">
<summary>
Gets or sets a mathShapeType constant that represents the appearance of delimiters.
</summary>
</member>
<member name="P:Syncfusion.Office.IOfficeMathDelimiter.Equation">
<summary>
Specifies a <see cref="T:Syncfusion.Office.IOfficeMaths"/> object that represents the base of the specified equation object.
</summary>
</member>
<member name="P:Syncfusion.Office.IOfficeMathDelimiter.ControlProperties">
<summary>
Gets or sets the <see cref="T:Syncfusion.Office.IOfficeRunFormat"/> object that represent the control property of MathML function.
</summary>
</member>
<member name="T:Syncfusion.Office.IOfficeMathEquationArray">
<summary>
Represents a mathematical equation array object, consisting of one or more equations that can be vertically justified as a unit respect to surrounding text on the line.
</summary>
</member>
<member name="P:Syncfusion.Office.IOfficeMathEquationArray.VerticalAlignment">
<summary>
Gets or sets the vertical alignment for an equation array.
</summary>
<value>The <see cref="T:Syncfusion.Office.MathVerticalAlignment"/> member that specifies vertical alignment for an equation array.</value>
</member>
<member name="P:Syncfusion.Office.IOfficeMathEquationArray.ExpandEquationContainer">
<summary>
Gets or sets a boolean that represents whether the equations in an equation array are distributed equally within the margins of its container, such as a column, cell, or page width.
</summary>
<remarks>The container for an equation array may be the margins of a page, the margins of a table cell, or another container in which the equation may exist.</remarks>
</member>
<member name="P:Syncfusion.Office.IOfficeMathEquationArray.ExpandEquationContent">
<summary>
Gets or sets a boolean that represents whether the equations in an equation array are spaced to the maximum width of the equation array.
</summary>
</member>
<member name="P:Syncfusion.Office.IOfficeMathEquationArray.RowSpacing">
<summary>
Gets or sets an float that represents the spacing between the rows in an equation array.
</summary>
</member>
<member name="P:Syncfusion.Office.IOfficeMathEquationArray.RowSpacingRule">
<summary>
Gets or sets spacing for an equation array.
</summary>
<value>The <see cref="T:Syncfusion.Office.SpacingRule"/> member that specifies the spacing in an equation array.</value>
</member>
<member name="P:Syncfusion.Office.IOfficeMathEquationArray.Equation">
<summary>
Returns an <see cref="T:Syncfusion.Office.IOfficeMaths"/> object that represents the base of the specified equation object.
</summary>
</member>
<member name="P:Syncfusion.Office.IOfficeMathEquationArray.ControlProperties">
<summary>
Gets or sets the <see cref="T:Syncfusion.Office.IOfficeRunFormat"/> object that represent the control property of MathML function.
</summary>
</member>
<member name="T:Syncfusion.Office.IOfficeMathFraction">
<summary>
Represents a fraction, consisting of a numerator and denominator separated by a fraction bar.
</summary>
</member>
<member name="P:Syncfusion.Office.IOfficeMathFraction.FractionType">
<summary>
Gets or sets a <see cref="T:Syncfusion.Office.MathFractionType"/> constant that represents the layout of a fraction. Default value is <b>bar</b>.
</summary>
</member>
<member name="P:Syncfusion.Office.IOfficeMathFraction.Denominator">
<summary>
Gets an <see cref="T:Syncfusion.Office.IOfficeMath"/> object that represents the denominator for an equation that contains a fraction.
</summary>
</member>
<member name="P:Syncfusion.Office.IOfficeMathFraction.Numerator">
<summary>
Gets an <see cref="T:Syncfusion.Office.IOfficeMath"/> object that represents the numerator for a fraction.
</summary>
</member>
<member name="P:Syncfusion.Office.IOfficeMathFraction.ControlProperties">
<summary>
Gets or sets the <see cref="T:Syncfusion.Office.IOfficeRunFormat"/> object that represent the control property of MathML function.
</summary>
</member>
<member name="T:Syncfusion.Office.IOfficeMathFunction">
<summary>
Represents the application of a function or an argument in an equation that consists of a function name, such as sin or cos, and an argument.
</summary>
</member>
<member name="P:Syncfusion.Office.IOfficeMathFunction.Equation">
<summary>
Gets a <see cref="T:Syncfusion.Office.OfficeMath"/> object that represents the base of the specified equation object.
</summary>
</member>
<member name="P:Syncfusion.Office.IOfficeMathFunction.FunctionName">
<summary>
Gets a <see cref="T:Syncfusion.Office.OfficeMath"/> object that represents the name of a mathematical function, such as sin or cos.
</summary>
</member>
<member name="P:Syncfusion.Office.IOfficeMathFunction.ControlProperties">
<summary>
Gets or sets the <see cref="T:Syncfusion.Office.IOfficeRunFormat"/> object that represent the control property of MathML function.
</summary>
</member>
<member name="T:Syncfusion.Office.IOfficeMathGroupCharacter">
<summary>
Represents a group character object, consisting of a character drawn above or below text, often with the purpose of visually grouping items.
</summary>
</member>
<member name="P:Syncfusion.Office.IOfficeMathGroupCharacter.HasAlignTop">
<summary>
Gets or sets a value that represents whether the grouping character is aligned vertically with the surrounding text or whether the base text that is either above or below the grouping character is aligned vertically with the surrounding text. Read/write.
</summary>
<value><b>True</b> if the grouping character is aligned vertically with the surrounding text ; otherwise, <b>false</b>.</value>
</member>
<member name="P:Syncfusion.Office.IOfficeMathGroupCharacter.GroupCharacter">
<summary>
Gets or sets a string that represents the character placed above or below text in a group character object. Read/write.
</summary>
</member>
<member name="P:Syncfusion.Office.IOfficeMathGroupCharacter.HasCharacterTop">
<summary>
Gets or sets a valuen that represents whether the grouping character is placed above the base text of the group character object. Read/write.
</summary>
<value><b>True</b> if the grouping character is placed above the base text of the group character object; otherwise, <b>false</b>.</value>
</member>
<member name="P:Syncfusion.Office.IOfficeMathGroupCharacter.Equation">
<summary>
Gets an <see cref="T:Syncfusion.Office.IOfficeMath"/> object that represents the base of the specified equation object.
</summary>
</member>
<member name="P:Syncfusion.Office.IOfficeMathGroupCharacter.ControlProperties">
<summary>
Gets or sets the <see cref="T:Syncfusion.Office.IOfficeRunFormat"/> object that represent the control property of MathML function.
</summary>
</member>
<member name="T:Syncfusion.Office.IOfficeMathLeftScript">
<summary>
Represents the interface of an equation that contains a superscript or subscript to the left of the base.
</summary>
</member>
<member name="P:Syncfusion.Office.IOfficeMathLeftScript.Subscript">
<summary>
Gets the subscript for a Leftscript object. Read-only.
</summary>
</member>
<member name="P:Syncfusion.Office.IOfficeMathLeftScript.Superscript">
<summary>
Gets the superscript for a Leftscript object. Read-only.
</summary>
</member>
<member name="P:Syncfusion.Office.IOfficeMathLeftScript.Equation">
<summary>
Gets an <see cref="T:Syncfusion.Office.IOfficeMath"/> object that represents the base of the specified equation object.
</summary>
</member>
<member name="P:Syncfusion.Office.IOfficeMathLeftScript.ControlProperties">
<summary>
Gets or sets the <see cref="T:Syncfusion.Office.IOfficeRunFormat"/> object that represent the control property of MathML function.
</summary>
</member>
<member name="T:Syncfusion.Office.IOfficeMathLimit">
<summary>
Represents an interface for MathML limit equation.
</summary>
</member>
<member name="P:Syncfusion.Office.IOfficeMathLimit.LimitType">
<summary>
Gets the type of the limit.
</summary>
</member>
<member name="P:Syncfusion.Office.IOfficeMathLimit.Equation">
<summary>
Gets an <see cref="T:Syncfusion.Office.IOfficeMath"/> object that represents the base of the specified equation object.
</summary>
</member>
<member name="P:Syncfusion.Office.IOfficeMathLimit.Limit">
<summary>
Gets an <see cref="T:Syncfusion.Office.IOfficeMath"/> object that represents the limit of the lower or upper limit object.
</summary>
</member>
<member name="P:Syncfusion.Office.IOfficeMathLimit.ControlProperties">
<summary>
Gets or sets the <see cref="T:Syncfusion.Office.IOfficeRunFormat"/> object that represent the control property of MathML function.
</summary>
</member>
<member name="T:Syncfusion.Office.IOfficeMathMatrix">
<summary>
Represents an interface for mathematical matrix, which contain elements in set of rows and columns.
</summary>
</member>
<member name="P:Syncfusion.Office.IOfficeMathMatrix.VerticalAlignment">
<summary>
Gets or sets MathVerticalAlignment constant that represents the vertical alignment for a matrix.
</summary>
</member>
<member name="P:Syncfusion.Office.IOfficeMathMatrix.ColumnWidth">
<summary>
Gets or sets a float that represents the spacing between columns in a matrix.
</summary>
</member>
<member name="P:Syncfusion.Office.IOfficeMathMatrix.ColumnSpacingRule">
<summary>
Gets or sets a MathSpacingRule constant that represents the spacing rule for the space that appears between columns in a matrix.
</summary>
</member>
<member name="P:Syncfusion.Office.IOfficeMathMatrix.Columns">
<summary>
Gets a <see cref="T:Syncfusion.Office.OfficeMathMatrixColumns"/> object that represents the columns in a matrix.
</summary>
</member>
<member name="P:Syncfusion.Office.IOfficeMathMatrix.ColumnSpacing">
<summary>
Gets or sets an float that represents the spacing for columns in a matrix.
</summary>
</member>
<member name="P:Syncfusion.Office.IOfficeMathMatrix.HidePlaceHolders">
<summary>
Gets or sets a boolean that represents whether placeholders in a matrix are hidden from display
</summary>
<value><b>True</b> placeholders do not appear in the matrix; otherwise, <b>false</b>placeholders appear in the matrix.</value>
</member>
<member name="P:Syncfusion.Office.IOfficeMathMatrix.Rows">
<summary>
Specifies the <see cref="T:Syncfusion.Office.IOfficeMathMatrixRows"/> object that represent a matrix Row.
</summary>
</member>
<member name="P:Syncfusion.Office.IOfficeMathMatrix.RowSpacing">
<summary>
Gets or sets an float that represents the spacing for rows in a matrix.
</summary>
</member>
<member name="P:Syncfusion.Office.IOfficeMathMatrix.RowSpacingRule">
<summary>
Gets or sets a MathSpacingRule constant that represents the spacing rule for rows in a matrix.
</summary>
</member>
<member name="P:Syncfusion.Office.IOfficeMathMatrix.ControlProperties">
<summary>
Gets or sets the <see cref="T:Syncfusion.Office.IOfficeRunFormat"/> object that represent the control property of MathML function.
</summary>
</member>
<member name="T:Syncfusion.Office.IOfficeMathMatrixColumns">
<summary>
Represents an interface for MathMatrixColumns
</summary>
</member>
<member name="M:Syncfusion.Office.IOfficeMathMatrixColumns.Add(System.Int32)">
<summary>
Adds <see cref="T:Syncfusion.Office.IOfficeMathMatrixColumn"/> instance to the collection at specified index.
</summary>
<param name="index">The Index, where to add the <see cref="T:Syncfusion.Office.IOfficeMathMatrixColumn"/> instance.</param>
<returns>Returns the newly added <see cref="T:Syncfusion.Office.IOfficeMathMatrixColumn"/>. </returns>
</member>
<member name="M:Syncfusion.Office.IOfficeMathMatrixColumns.Add">
<summary>
Adds <see cref="T:Syncfusion.Office.IOfficeMathMatrixColumn"/> instance to the collection.
</summary>
<returns>Returns the newly added <see cref="T:Syncfusion.Office.IOfficeMathMatrixColumn"/>. </returns>
</member>
<member name="P:Syncfusion.Office.IOfficeMathMatrixColumns.Item(System.Int32)">
<summary>
Gets the specified item in the collection.
</summary>
</member>
<member name="T:Syncfusion.Office.IOfficeMathMatrixRows">
<summary>
Represents an interface for matrix rows.
</summary>
</member>
<member name="M:Syncfusion.Office.IOfficeMathMatrixRows.Add(System.Int32)">
<summary>
Adds <see cref="T:Syncfusion.Office.IOfficeMathMatrixRow"/> instance to the collection at specified index.
</summary>
<param name="index">The Index, where to add the <see cref="T:Syncfusion.Office.IOfficeMathMatrixRow"/> instance.</param>
<returns>Returns the newly added <see cref="T:Syncfusion.Office.IOfficeMathMatrixRow"/>. </returns>
</member>
<member name="M:Syncfusion.Office.IOfficeMathMatrixRows.Add">
<summary>
Adds <see cref="T:Syncfusion.Office.IOfficeMathMatrixRow"/> instance to the collection.
</summary>
<returns>Returns the newly added <see cref="T:Syncfusion.Office.IOfficeMathMatrixRow"/>. </returns>
</member>
<member name="P:Syncfusion.Office.IOfficeMathMatrixRows.Item(System.Int32)">
<summary>
Gets the specified item in the collection.
</summary>
</member>
<member name="T:Syncfusion.Office.IOfficeMathNArray">
<summary>
Represents mathematical n-ary object, consisting of an n-ary object, a base (or operand), and optional upper limits and lower limits.
</summary>
</member>
<member name="P:Syncfusion.Office.IOfficeMathNArray.NArrayCharacter">
<summary>
Gets or sets a string that represents a character used as the n-ary operator. Default value is <b>integral</b>.
</summary>
</member>
<member name="P:Syncfusion.Office.IOfficeMathNArray.HasGrow">
<summary>
Gets or sets a boolean that represents whether n-ary operators grow to the full height of the arguments that they contain.Default value is <b>false</b>.
</summary>
</member>
<member name="P:Syncfusion.Office.IOfficeMathNArray.HideLowerLimit">
<summary>
Gets or sets a boolean that represents whether to hide the lower limit of an n-ary operator. Default value is <b>false</b>.
</summary>
</member>
<member name="P:Syncfusion.Office.IOfficeMathNArray.HideUpperLimit">
<summary>
Gets or sets a boolean that represents whether to hide the upper limit of an n-ary operator. Default value is <b>false</b>.
</summary>
</member>
<member name="P:Syncfusion.Office.IOfficeMathNArray.SubSuperscriptLimit">
<summary>
Gets or sets a boolean that represents the positioning of n-ary limits in the subscript-superscript or upper limit-lower limit position. Default value is <b>true</b> for integral and <b>false</b> for all other <see cref="T:Syncfusion.Office.IOfficeMathNArray"/> object.
</summary>
</member>
<member name="P:Syncfusion.Office.IOfficeMathNArray.Equation">
<summary>
Gets an <see cref="T:Syncfusion.Office.IOfficeMath"/> object that represents the base of the specified equation object.
</summary>
</member>
<member name="P:Syncfusion.Office.IOfficeMathNArray.Subscript">
<summary>
Gets an <see cref="T:Syncfusion.Office.IOfficeMath"/> object that represents the lower limit of an n-ary operator.
</summary>
</member>
<member name="P:Syncfusion.Office.IOfficeMathNArray.Superscript">
<summary>
Gets an <see cref="T:Syncfusion.Office.IOfficeMath"/> object that represents the upper limit of an n-ary operator.
</summary>
</member>
<member name="P:Syncfusion.Office.IOfficeMathNArray.ControlProperties">
<summary>
Gets or sets the <see cref="T:Syncfusion.Office.IOfficeRunFormat"/> object that represent the control property of MathML function.
</summary>
</member>
<member name="T:Syncfusion.Office.IOfficeMathParagraph">
<summary>
Represents the OfficeMathPara that can be used to format a top level MathML element.
</summary>
</member>
<member name="P:Syncfusion.Office.IOfficeMathParagraph.Justification">
<summary>
Gets or sets Office <see cref="T:Syncfusion.Office.MathJustification"/>.
</summary>
</member>
<member name="P:Syncfusion.Office.IOfficeMathParagraph.Maths">
<summary>
Gets a collection of equations. Use the <see cref="T:Syncfusion.Office.OfficeMaths"/> object to access individual members of the collection.
</summary>
</member>
<member name="P:Syncfusion.Office.IOfficeMathParagraph.Owner">
<summary>
Gets the owner.
</summary>
</member>
<member name="T:Syncfusion.Office.IOfficeMathPhantom">
<summary>
Represents a phantom object, which has two primary uses: (1) adding the spacing of the phantom base without displaying that base or (2) suppressing part of the glyph from spacing considerations
</summary>
</member>
<member name="P:Syncfusion.Office.IOfficeMathPhantom.Show">
<summary>
Gets or sets a boolean that represents whether the contents of a phantom object are visible.
</summary>
<value><b>True</b> phantom base is shown; otherwise, <b>false</b>phantom base is hidden.</value>
</member>
<member name="P:Syncfusion.Office.IOfficeMathPhantom.Transparent">
<summary>
Gets or sets a boolean that represents that the contents of the phantom are visible but that the height is not taken into account in the spacing of the layout.
</summary>
<value><b>True</b> phantom base is shown; otherwise, <b>false</b>phantom base is hidden.</value>
bool Smash { get; set; }
<summary>
Gets or sets a boolean that represents whether a phantom object is transparent.
</summary>
<value><b>True</b> phantom object is transparent; otherwise, <b>false</b>phantom object is not transparent .</value>
</member>
<member name="P:Syncfusion.Office.IOfficeMathPhantom.ZeroAscent">
<summary>
Gets or sets a boolean that represents whether the ascent of the phantom contents is ignored in the spacing of the layout.
</summary>
<value><b>True</b> ascent of the contents of the phantom is not taken into account during layout; otherwise, <b>false</b>phantom does have ascent.</value>
</member>
<member name="P:Syncfusion.Office.IOfficeMathPhantom.ZeroDescent">
<summary>
Gets or sets a boolean that represents whether the descent of the phantom contents is ignored in the spacing of the layout.
</summary>
<value><b>True</b> descent of the contents of the phantom is taken into account during layout.; otherwise, <b>false</b>phantom does have descent.</value>
</member>
<member name="P:Syncfusion.Office.IOfficeMathPhantom.ZeroWidth">
<summary>
Gets or sets a boolean that represents whether the width of a phantom object is ignored in the spacing of the layout.
</summary>
<value><b>True</b>width of the contents of the phantom is not taken into account during layout.; otherwise, <b>false</b>phantom does have width.</value>
</member>
<member name="P:Syncfusion.Office.IOfficeMathPhantom.Equation">
<summary>
Gets a <see cref="T:Syncfusion.Office.OfficeMath"/> object that represents the base of the specified equation object.
</summary>
</member>
<member name="P:Syncfusion.Office.IOfficeMathPhantom.ControlProperties">
<summary>
Gets or sets the <see cref="T:Syncfusion.Office.IOfficeRunFormat"/> object that represent the control property of MathML function.
</summary>
</member>
<member name="T:Syncfusion.Office.IOfficeMathRadical">
<summary>
Represents an interface for radical function.
</summary>
</member>
<member name="P:Syncfusion.Office.IOfficeMathRadical.Degree">
<summary>
Gets the math object that represents the degree for a radical. Read-only.
</summary>
</member>
<member name="P:Syncfusion.Office.IOfficeMathRadical.Equation">
<summary>
Gets an <see cref="T:Syncfusion.Office.IOfficeMath"/> object that represents the base of the specified equation object.
</summary>
</member>
<member name="P:Syncfusion.Office.IOfficeMathRadical.HideDegree">
<summary>
Gets or sets a value that represents whether to hide the degree for a radical.
</summary>
<value><b>True</b> if to hide the degree for a radical; otherwise, <b>false</b>.</value>
</member>
<member name="P:Syncfusion.Office.IOfficeMathRadical.ControlProperties">
<summary>
Gets or sets the <see cref="T:Syncfusion.Office.IOfficeRunFormat"/> object that represent the control property of MathML function.
</summary>
</member>
<member name="T:Syncfusion.Office.IOfficeMaths">
<summary>
Represents an interface for MathML collection.
</summary>
</member>
<member name="M:Syncfusion.Office.IOfficeMaths.Add(System.Int32)">
<summary>
Adds <see cref="T:Syncfusion.Office.IOfficeMath"/> instance to the collection at specified index.
</summary>
<param name="index">The Index, where to add the <see cref="T:Syncfusion.Office.IOfficeMath"/> instance.</param>
<returns>Returns the newly added <see cref="T:Syncfusion.Office.IOfficeMath"/>. </returns>
</member>
<member name="M:Syncfusion.Office.IOfficeMaths.Add">
<summary>
Adds <see cref="T:Syncfusion.Office.IOfficeMath"/> instance to the collection.
</summary>
<returns>Returns the newly added <see cref="T:Syncfusion.Office.IOfficeMath"/>. </returns>
</member>
<member name="P:Syncfusion.Office.IOfficeMaths.Item(System.Int32)">
<summary>
Represents the specified item in the collection.
</summary>
</member>
<member name="T:Syncfusion.Office.IOfficeMathBreak">
<summary>
Represents an interface to maintain break between the equation.
</summary>
</member>
<member name="P:Syncfusion.Office.IOfficeMathBreak.AlignAt">
<summary>
Gets or sets the integer that represents the operator in one line.
</summary>
</member>
<member name="T:Syncfusion.Office.IOfficeMathBaseCollection">
<summary>
Represents an interface for function collection.
</summary>
</member>
<member name="M:Syncfusion.Office.IOfficeMathBaseCollection.Add(System.Int32,Syncfusion.Office.MathFunctionType)">
<summary>
Adds <see cref="T:Syncfusion.Office.IOfficeMathFunctionBase"/> instance to the collection at specified index.
</summary>
<param name="index">The Index, where to add the <see cref="T:Syncfusion.Office.IOfficeMathFunctionBase"/> instance.</param>
<param name="mathFunctionType"> Represents the type of function to add.</param>
<returns>Returns the newly added <see cref="T:Syncfusion.Office.IOfficeMathFunctionBase"/>. </returns>
</member>
<member name="M:Syncfusion.Office.IOfficeMathBaseCollection.Add(Syncfusion.Office.MathFunctionType)">
<summary>
Adds <see cref="T:Syncfusion.Office.IOfficeMathFunctionBase"/> instance to the collection.
</summary>
<returns>Returns the newly added <see cref="T:Syncfusion.Office.IOfficeMathFunctionBase"/>. </returns>
</member>
<member name="P:Syncfusion.Office.IOfficeMathBaseCollection.Item(System.Int32)">
<summary>
Represents the specified item in the collection.
</summary>
</member>
<member name="T:Syncfusion.Office.IOfficeMathAccent">
<summary>
Returns an <see cref="T:Syncfusion.Office.IOfficeMathAccent"/> object that represents a base character with a combining accent mark. Read-only.
</summary>
</member>
<member name="P:Syncfusion.Office.IOfficeMathAccent.AccentCharacter">
<summary>
Gets or sets a string that represents the accent character for the <see cref="T:Syncfusion.Office.IOfficeMathAccent"/> object. Read/write.
</summary>
</member>
<member name="P:Syncfusion.Office.IOfficeMathAccent.Equation">
<summary>
Gets a <see cref="T:Syncfusion.Office.IOfficeMath"/> object that represents the base of the specified equation object. Read-only.
</summary>
</member>
<member name="P:Syncfusion.Office.IOfficeMathAccent.ControlProperties">
<summary>
Gets or sets the <see cref="T:Syncfusion.Office.IOfficeRunFormat"/> object that represent the control property of MathML function.
</summary>
</member>
<member name="T:Syncfusion.Office.IOfficeRunFormat">
<summary>
Represents an interface to maintain character format of <see cref="T:Syncfusion.Office.IOfficeMathRunElement"/>.
</summary>
</member>
<member name="M:Syncfusion.Office.IOfficeRunFormat.Clone">
<summary>
Creates a duplicate copy of character format
</summary>
<returns>The reference of the newly created object.</returns>
<remarks>This API is used for internal purpose to clone <see cref="T:Syncfusion.Office.IOfficeRunFormat"/>.</remarks>
</member>
<member name="M:Syncfusion.Office.IOfficeRunFormat.Dispose">
<summary>
Releases all resources used by the object.
</summary>
<remarks>This API is used for internal purpose to dispose the resources used by <see cref="T:Syncfusion.Office.IOfficeRunFormat"/>.</remarks>
</member>
<member name="T:Syncfusion.Office.IOfficeMathFormat">
<summary>
Represents the <see cref="T:Syncfusion.Office.OfficeMathFormat"/> object that can be used for formatting the character of the mathematical text.
</summary>
</member>
<member name="P:Syncfusion.Office.IOfficeMathFormat.HasAlignment">
<summary>
Gets or sets a boolean that represents the alignment property. When multiple alignment point is set, lastly set alignment point is considered. Default value is <b>false</b>.
</summary>
</member>
<member name="P:Syncfusion.Office.IOfficeMathFormat.Break">
<summary>
Gets or sets individual line breaks in an equation.
</summary>
</member>
<member name="P:Syncfusion.Office.IOfficeMathFormat.HasLiteral">
<summary>
Gets or sets a boolean that represents whether the characters in the run are literal (i.e., they are to be interpreted literally and not be built up based on any implied mathematical meaning). Default value is <b>false</b>.
</summary>
</member>
<member name="P:Syncfusion.Office.IOfficeMathFormat.HasNormalText">
<summary>
Gets or sets a boolean that represents whether the run is normal text, i.e., math italics and math spacing are not applied. Default value is <b>false</b>.
</summary>
</member>
<member name="P:Syncfusion.Office.IOfficeMathFormat.Font">
<summary>
Gets or sets the script applied to the characters in the run. Default value is <b>Roman</b>.
</summary>
</member>
<member name="P:Syncfusion.Office.IOfficeMathFormat.Style">
<summary>
Gets or sets the style applied to the characters in the run. Default style is italic.
</summary>
</member>
<member name="T:Syncfusion.Office.IOfficeMathBreaks">
<summary>
Represents an interface for Math break collection.
</summary>
</member>
<member name="M:Syncfusion.Office.IOfficeMathBreaks.Add(System.Int32)">
<summary>
Adds <see cref="T:Syncfusion.Office.IOfficeMathBreak"/> instance to the collection at specified index.
</summary>
<param name="index">The Index, where to add the <see cref="T:Syncfusion.Office.IOfficeMathBreak"/> instance.</param>
<returns>Returns the newly added <see cref="T:Syncfusion.Office.IOfficeMathBreak"/>. </returns>
</member>
<member name="M:Syncfusion.Office.IOfficeMathBreaks.Add">
<summary>
Adds <see cref="T:Syncfusion.Office.IOfficeMathBreak"/> instance to the collection.
</summary>
<returns>Returns the newly added <see cref="T:Syncfusion.Office.IOfficeMathBreak"/>. </returns>
</member>
<member name="P:Syncfusion.Office.IOfficeMathBreaks.Item(System.Int32)">
<summary>
Gets mathBreak object that represents the specified item in the collection.
</summary>
</member>
<member name="T:Syncfusion.Office.IOfficeMathRightScript">
<summary>
Represents an equation with a base that contains a superscript or subscript.
</summary>
</member>
<member name="P:Syncfusion.Office.IOfficeMathRightScript.IsSkipAlign">
<summary>
Gets or sets a boolean that represents whether to horizontally align subscripts and superscripts in the <see cref="T:Syncfusion.Office.IOfficeMathRightScript"/> object. Read/write.
</summary>
</member>
<member name="P:Syncfusion.Office.IOfficeMathRightScript.Subscript">
<summary>
Gets an <see cref="T:Syncfusion.Office.IOfficeMath"/> object that represents the subscript for a <see cref="T:Syncfusion.Office.IOfficeMathRightScript"/> object. Read-only.
</summary>
</member>
<member name="P:Syncfusion.Office.IOfficeMathRightScript.Superscript">
<summary>
Gets an <see cref="T:Syncfusion.Office.IOfficeMath"/> object that represents the superscript for a <see cref="T:Syncfusion.Office.IOfficeMathRightScript"/> object. Read-only.
</summary>
</member>
<member name="P:Syncfusion.Office.IOfficeMathRightScript.Equation">
<summary>
Gets an <see cref="T:Syncfusion.Office.IOfficeMath"/> object that represents the base of the specified equation object. Read-only.
</summary>
</member>
<member name="P:Syncfusion.Office.IOfficeMathRightScript.ControlProperties">
<summary>
Gets or sets the <see cref="T:Syncfusion.Office.IOfficeRunFormat"/> object that represent the control property of MathML function.
</summary>
</member>
<member name="T:Syncfusion.Office.IOfficeMathScript">
<summary>
Represents an equation with a base that contains a subscript or superscript.
</summary>
</member>
<member name="P:Syncfusion.Office.IOfficeMathScript.ScriptType">
<summary>
Gets or sets a <see cref="T:Syncfusion.Office.MathScriptType"/> type to represent either a subscript or superscript.
</summary>
</member>
<member name="P:Syncfusion.Office.IOfficeMathScript.Equation">
<summary>
Gets an <see cref="T:Syncfusion.Office.IOfficeMath"/> object that represents the base of the specified equation object.
</summary>
</member>
<member name="P:Syncfusion.Office.IOfficeMathScript.Script">
<summary>
Gets the type of the script.
</summary>
</member>
<member name="P:Syncfusion.Office.IOfficeMathScript.ControlProperties">
<summary>
Gets or sets the <see cref="T:Syncfusion.Office.IOfficeRunFormat"/> object that represent the control property of MathML function.
</summary>
</member>
<member name="T:Syncfusion.Office.IOfficeMathRunElement">
<summary>
Represents <see cref="T:Syncfusion.Office.OfficeMathRunElement"/> object that provides the base implementation for all <see cref="T:Syncfusion.Office.IOfficeMathParagraph"/> items.
</summary>
</member>
<member name="P:Syncfusion.Office.IOfficeMathRunElement.Item">
<summary>
Gets or sets the <see cref="T:Syncfusion.Office.IOfficeRun"/> object that represents a mathematical text.
</summary>
</member>
<member name="P:Syncfusion.Office.IOfficeMathRunElement.MathFormat">
<summary>
Gets the <see cref="T:Syncfusion.Office.OfficeMathFormat"/> object that can be used for formatting the character of the mathematical text.
</summary>
</member>
<member name="T:Syncfusion.Office.OfficeMath">
<summary>
Represents an equation. Math objects are members of the <see cref="T:Syncfusion.Office.OfficeMaths"/> collection.
</summary>
</member>
<member name="T:Syncfusion.Office.IOfficeMath">
<summary>
Represents an equation. Math objects are members of the <see cref="T:Syncfusion.Office.OfficeMaths"/> collection.
</summary>
</member>
<member name="P:Syncfusion.Office.IOfficeMath.ArgumentSize">
<summary>
Gets or sets an integer that represents the script size of an argument.
</summary>
<value>The <b>int</b> that specifies the script size of an argument.</value>
</member>
<member name="P:Syncfusion.Office.IOfficeMath.Functions">
<summary>
Gets or sets an <see cref="T:Syncfusion.Office.OfficeMathBaseCollection"/> collection that represents the functions contained within an equation. Read-only.
</summary>
</member>
<member name="P:Syncfusion.Office.IOfficeMath.OwnerColumn">
<summary>
Gets a <see cref="T:Syncfusion.Office.IOfficeMathMatrixColumn"/> object that represents the parent column in a matrix. Read-only.
</summary>
</member>
<member name="P:Syncfusion.Office.IOfficeMath.OwnerMath">
<summary>
Gets a <see cref="T:Syncfusion.Office.IOfficeMath"/> object that represents the parent element. Read-only.
</summary>
</member>
<member name="P:Syncfusion.Office.IOfficeMath.OwnerRow">
<summary>
Gets a <see cref="T:Syncfusion.Office.IOfficeMathMatrixRow"/> object that represents the parent row in a matrix. Read-only.
</summary>
</member>
<member name="P:Syncfusion.Office.IOfficeMath.Breaks">
<summary>
Gets a <see cref="T:Syncfusion.Office.IOfficeMathBreaks"/> collection that represents the line breaks in an equation.Read-only.
</summary>
</member>
<member name="F:Syncfusion.Office.OfficeMath.m_functions">
<summary>
Specifies an <see cref="T:Syncfusion.Office.IOfficeMathBaseCollection"/> collection that represents the functions contained within an equation.
</summary>
</member>
<member name="F:Syncfusion.Office.OfficeMath.m_parentCol">
<summary>
Specifies the <see cref="T:Syncfusion.Office.IOfficeMathMatrixColumn"/> object that represents the parent column in a matrix.
</summary>
</member>
<member name="F:Syncfusion.Office.OfficeMath.m_parentRow">
<summary>
Specifies the <see cref="T:Syncfusion.Office.IOfficeMathMatrixRow"/> object that represents the parent row in a matrix.
</summary>
</member>
<member name="F:Syncfusion.Office.OfficeMath.m_breaks">
<summary>
Specifies a <see cref="T:Syncfusion.Office.IOfficeMathBreaks"/> collection that represents the line breaks in an equation.Read-only.
</summary>
</member>
<member name="M:Syncfusion.Office.OfficeMath.GetOwnerMath">
<summary>
Gets the owner math of the <see cref="T:Syncfusion.Office.IOfficeMath"/> object.
</summary>
</member>
<member name="M:Syncfusion.Office.OfficeMath.Buildup">
<summary>
Converts all equations in the collection to professional format.
</summary>
</member>
<member name="M:Syncfusion.Office.OfficeMath.ConvertToLiteralText">
<summary>
Converts all equations in the collection to literal text.
</summary>
</member>
<member name="M:Syncfusion.Office.OfficeMath.ConvertToMathText">
<summary>
Converts all equations in the collection to math text.
</summary>
</member>
<member name="M:Syncfusion.Office.OfficeMath.ConvertToNormalText">
<summary>
Converts all equations in the collection to normal text.
</summary>
</member>
<member name="M:Syncfusion.Office.OfficeMath.Linearize">
<summary>
Converts all equations in the collection to linear format.
</summary>
</member>
<member name="M:Syncfusion.Office.OfficeMath.Remove">
<summary>
Removes an equation from the collection of equations in a document, range, or selection.
</summary>
</member>
<member name="M:Syncfusion.Office.OfficeMath.Close">
<summary>
Closes the object
</summary>
</member>
<member name="M:Syncfusion.Office.OfficeMath.CloneImpl(Syncfusion.Office.IOfficeMathEntity)">
<summary>
Clones the item
</summary>
<returns></returns>
</member>
<member name="M:Syncfusion.Office.OfficeMath.GetPropertyValue(System.Int32)">
<summary>
Gets the property value.
</summary>
</member>
<member name="M:Syncfusion.Office.OfficeMath.SetPropertyValue(System.Int32,System.Object)">
<summary>
Sets the property value.
</summary>
</member>
<member name="M:Syncfusion.Office.OfficeMath.GetDefValue(System.Int32)">
<summary>
Return default value of the respective key.
</summary>
</member>
<member name="M:Syncfusion.Office.OfficeMath.HasValue(System.Int32)">
<summary>
Determines whether the specified property key has value.
</summary>
<param name="propertyKey">The property key.</param>
<returns>
if the specified property key has value, set to <c>true</c>.
</returns>
</member>
<member name="M:Syncfusion.Office.OfficeMath.HasKey(System.Int32)">
<summary>
Returns the value indicating whether the key exists in the properties collection.
</summary>
<param name="key">The <b>integer</b> that specifies the key.</param>
<returns>
<b>True</b> if the specified key is present, otherwise <b>false</b>.
</returns>
</member>
<member name="P:Syncfusion.Office.OfficeMath.AlignPoint">
<summary>
Gets or sets an integer that represents the character position of the alignment point in the equation. Read/write.
</summary>
</member>
<member name="P:Syncfusion.Office.OfficeMath.ArgumentSize">
<summary>
Gets or sets an integer that represents the script size of an argument.
</summary>
<value>The <b>int</b> that specifies the script size of an argument.</value>
</member>
<member name="P:Syncfusion.Office.OfficeMath.Functions">
<summary>
Gets or sets an <see cref="T:Syncfusion.Office.IOfficeMathBaseCollection"/> collection that represents the functions contained within an equation. Read-only.
</summary>
</member>
<member name="P:Syncfusion.Office.OfficeMath.NestingLevel">
<summary>
Gets an integer that represents the nesting level for an <see cref="T:Syncfusion.Office.IOfficeMath"/> object. Read-only.
</summary>
</member>
<member name="P:Syncfusion.Office.OfficeMath.OwnerColumn">
<summary>
Gets a <see cref="T:Syncfusion.Office.IOfficeMathMatrixColumn"/> object that represents the parent column in a matrix. Read-only.
</summary>
</member>
<member name="P:Syncfusion.Office.OfficeMath.OwnerMath">
<summary>
Gets a <see cref="T:Syncfusion.Office.IOfficeMath"/> object that represents the parent element. Read-only.
</summary>
</member>
<member name="P:Syncfusion.Office.OfficeMath.OwnerRow">
<summary>
Gets a <see cref="T:Syncfusion.Office.IOfficeMathMatrixRow"/> object that represents the parent row in a matrix. Read-only.
</summary>
</member>
<member name="P:Syncfusion.Office.OfficeMath.Breaks">
<summary>
Gets a <see cref="T:Syncfusion.Office.IOfficeMathBreaks"/> collection that represents the line breaks in an equation.Read-only.
</summary>
</member>
<member name="P:Syncfusion.Office.OfficeMath.PropertiesHash">
<summary>
Gets the propertieshash value.
</summary>
</member>
<member name="P:Syncfusion.Office.OfficeMath.Item(System.Int32)">
<summary>
Gets or sets the value for the property with specified key.
</summary>
</member>
<member name="T:Syncfusion.Office.OfficeMathBar">
<summary>
Represents an equation with a bar above or below the base.
</summary>
</member>
<member name="T:Syncfusion.Office.OfficeMathFunctionBase">
<summary>
Represents the Mathematical function.
</summary>
</member>
<member name="M:Syncfusion.Office.OfficeMathFunctionBase.#ctor(Syncfusion.Office.IOfficeMathEntity)">
<summary>
Initializes a new instance of the <see cref="T:Syncfusion.Office.OfficeMathFunctionBase"/> class with
the owner <see cref="T:Syncfusion.Office.OfficeMathFunctionBase"/> instance.
</summary>
<param name="owner">The owner.</param>
</member>
<member name="M:Syncfusion.Office.OfficeMathFunctionBase.GetDefaultControlProperties">
<summary>
Get default control properties of function.
</summary>
<returns></returns>
</member>
<member name="M:Syncfusion.Office.OfficeMathFunctionBase.GetBaseMathParagraph(Syncfusion.Office.OfficeMathFunctionBase)">
<summary>
Get math paragraph
</summary>
<param name="mathFunction"></param>
<returns></returns>
</member>
<member name="P:Syncfusion.Office.OfficeMathFunctionBase.Type">
<summary>
Gets the type of the mathematical function.Read-Only.
</summary>
</member>
<member name="F:Syncfusion.Office.OfficeMathBar.BarTopKey">
<summary>
Keys.
</summary>
</member>
<member name="F:Syncfusion.Office.OfficeMathBar.m_equation">
<summary>
Specifies a <see cref="T:Syncfusion.Office.OfficeMath"/> object that represents the base of the specified equation object.
</summary>
</member>
<member name="F:Syncfusion.Office.OfficeMathBar.m_propertiesHash">
<summary>
Holds the collection of properties values and its keys.
</summary>
</member>
<member name="M:Syncfusion.Office.OfficeMathBar.#ctor(Syncfusion.Office.IOfficeMathEntity)">
<summary>
Initializes a new instance of the <see cref="T:Syncfusion.Office.OfficeMathBar"/> class.
</summary>
</member>
<member name="M:Syncfusion.Office.OfficeMathBar.Clone(Syncfusion.Office.IOfficeMathEntity)">
<summary>
Clones the item
</summary>
</member>
<member name="M:Syncfusion.Office.OfficeMathBar.GetPropertyValue(System.Int32)">
<summary>
Gets the property value.
</summary>
<param name="propKey">The prop key.</param>
<returns></returns>
</member>
<member name="M:Syncfusion.Office.OfficeMathBar.SetPropertyValue(System.Int32,System.Object)">
<summary>
Sets the property value.
</summary>
<param name="propKey">The property key.</param>
<param name="value">The value.</param>
</member>
<member name="M:Syncfusion.Office.OfficeMathBar.GetDefValue(System.Int32)">
<summary>
Sets the default properties.
</summary>
</member>
<member name="M:Syncfusion.Office.OfficeMathBar.HasValue(System.Int32)">
<summary>
Determines whether the specified property key has value.
</summary>
<param name="propertyKey">The property key.</param>
<returns>
if the specified property key has value, set to <c>true</c>.
</returns>
</member>
<member name="M:Syncfusion.Office.OfficeMathBar.HasKey(System.Int32)">
<summary>
Returns the value indicating whether the key exists in the properties collection.
</summary>
<param name="key">The <b>integer</b> that specifies the key.</param>
<returns>
<b>True</b> if the specified key is present, otherwise <b>false</b>.
</returns>
</member>
<member name="M:Syncfusion.Office.OfficeMathBar.Close">
<summary>
Closes the instance.
</summary>
</member>
<member name="P:Syncfusion.Office.OfficeMathBar.ControlProperties">
<summary>
Gets or sets the <see cref="T:Syncfusion.Office.IOfficeRunFormat"/> object that represent the control property of MathML function.
</summary>
</member>
<member name="P:Syncfusion.Office.OfficeMathBar.BarTop">
<summary>
Gets or sets a boolean that represents the position of a bar in a bar object.
</summary>
<value><b>True</b> mathematical overbar.<b>false</b>mathematical underbar.</value>
</member>
<member name="P:Syncfusion.Office.OfficeMathBar.Equation">
<summary>
Gets a <see cref="T:Syncfusion.Office.OfficeMath"/> object that represents the base of the specified equation object.
</summary>
</member>
<member name="P:Syncfusion.Office.OfficeMathBar.PropertiesHash">
<summary>
Gets the PropertiesHash value.
</summary>
</member>
<member name="P:Syncfusion.Office.OfficeMathBar.Item(System.Int32)">
<summary>
Gets or sets the value for the property with specified key.
</summary>
</member>
<member name="T:Syncfusion.Office.OfficeMathBorderBox">
<summary>
Represents the class for border box.
</summary>
</member>
<member name="F:Syncfusion.Office.OfficeMathBorderBox.m_equation">
<summary>
Member that represents the Math object.
</summary>
</member>
<member name="F:Syncfusion.Office.OfficeMathBorderBox.m_propertiesHash">
<summary>
Member to hold the collection of properties values and its keys.
</summary>
</member>
<member name="F:Syncfusion.Office.OfficeMathBorderBox.m_controlProperties">
<summary>
Represents the character format
</summary>
</member>
<member name="M:Syncfusion.Office.OfficeMathBorderBox.#ctor(Syncfusion.Office.IOfficeMathEntity)">
<summary>
Initializes a new instance of the <see cref="T:Syncfusion.Office.OfficeMathBorderBox"/> class.
</summary>
</member>
<member name="M:Syncfusion.Office.OfficeMathBorderBox.GetPropertyValue(System.Int32)">
<summary>
Gets the property value.
</summary>
</member>
<member name="M:Syncfusion.Office.OfficeMathBorderBox.SetPropertyValue(System.Int32,System.Object)">
<summary>
Sets the property value.
</summary>
</member>
<member name="M:Syncfusion.Office.OfficeMathBorderBox.GetDefValue(System.Int32)">
<summary>
Return default value of the respective key.
</summary>
</member>
<member name="M:Syncfusion.Office.OfficeMathBorderBox.HasValue(System.Int32)">
<summary>
Determines whether the specified property key has value.
</summary>
<param name="propertyKey">The property key.</param>
<returns>
if the specified property key has value, set to <c>true</c>.
</returns>
</member>
<member name="M:Syncfusion.Office.OfficeMathBorderBox.HasKey(System.Int32)">
<summary>
Returns the value indicating whether the key exists in the properties collection.
</summary>
<param name="key">The <b>integer</b> that specifies the key.</param>
<returns>
<b>True</b> if the specified key is present, otherwise <b>false</b>.
</returns>
</member>
<member name="M:Syncfusion.Office.OfficeMathBorderBox.Clone(Syncfusion.Office.IOfficeMathEntity)">
<summary>
Clones the item
</summary>
<returns></returns>
</member>
<member name="M:Syncfusion.Office.OfficeMathBorderBox.Close">
<summary>
Closes this Instance.
</summary>
</member>
<member name="P:Syncfusion.Office.OfficeMathBorderBox.HideTop">
<summary>
Gets or sets a value that represents whether to hide the top border of an equation's bounding box.
</summary>
<returns><b>True</b>if to hide the top border; otherwise,<b>false</b>.</returns>
</member>
<member name="P:Syncfusion.Office.OfficeMathBorderBox.HideBottom">
<summary>
Gets or sets a value that represents whether to hide the bottom border of an equation's bounding box.
</summary>
<value><b>True</b> if to hide the bottom border; otherwise, <b>false</b>.</value>
</member>
<member name="P:Syncfusion.Office.OfficeMathBorderBox.HideRight">
<summary>
Gets or sets a value that represents whether to hide the right border of an equation's bounding box.
</summary>
<value><b>True</b> if to hide the right border; otherwise, <b>false</b>.</value>
</member>
<member name="P:Syncfusion.Office.OfficeMathBorderBox.HideLeft">
<summary>
Gets or sets a value that represents whether to hide the left border of an equation's bounding box.
</summary>
<value><b>True</b> if to hide the left border; otherwise, <b>false</b>.</value>
</member>
<member name="P:Syncfusion.Office.OfficeMathBorderBox.StrikeDiagonalUp">
<summary>
Gets or sets a value that represents a diagonal strikethrough from lower left to upper right.
</summary>
<value><b>True</b> if diagonal strikethrough from lower left to upper right; otherwise, <b>false</b>.</value>
</member>
<member name="P:Syncfusion.Office.OfficeMathBorderBox.StrikeDiagonalDown">
<summary>
Gets or sets a value that represents a diagonal strikethrough from upper left to lower right.
</summary>
<value><b>True</b> if diagonal strikethrough from upper left to lower right; otherwise, <b>false</b>.</value>
</member>
<member name="P:Syncfusion.Office.OfficeMathBorderBox.StrikeVertical">
<summary>
Gets or sets a value that represents a Vertical strikethrough.
</summary>
<value><b>True</b> if vertical strikethrough ; otherwise, <b>false</b>.</value>
</member>
<member name="P:Syncfusion.Office.OfficeMathBorderBox.StrikeHorizontal">
<summary>
Gets or sets a value that represents a Horizontal strikethrough.
</summary>
<value><b>True</b> if horizontal strikethrough ; otherwise, <b>false</b>.</value>
</member>
<member name="P:Syncfusion.Office.OfficeMathBorderBox.Equation">
<summary>
Specifies a <see cref="T:Syncfusion.Office.IOfficeMath"/> object that represents the base of the specified equation object.Read-Only.
</summary>
</member>
<member name="P:Syncfusion.Office.OfficeMathBorderBox.ControlProperties">
<summary>
Gets or sets the <see cref="T:Syncfusion.Office.IOfficeRunFormat"/> object that represent the control property of MathML function.
</summary>
</member>
<member name="T:Syncfusion.Office.OfficeMathBox">
<summary>
Represents the class for Box function.
</summary>
</member>
<member name="F:Syncfusion.Office.OfficeMathBox.m_equation">
<summary>
Member that represents the Math Object.
</summary>
</member>
<member name="F:Syncfusion.Office.OfficeMathBox.m_break">
<summary>
Member that represents individual line breaks in an equation.
</summary>
</member>
<member name="F:Syncfusion.Office.OfficeMathBox.m_propertiesHash">
<summary>
Member to hold the collection of properties values and its keys.
</summary>
</member>
<member name="F:Syncfusion.Office.OfficeMathBox.m_controlProperties">
<summary>
Represents the character format
</summary>
</member>
<member name="M:Syncfusion.Office.OfficeMathBox.#ctor(Syncfusion.Office.IOfficeMathEntity)">
<summary>
Initializes a new instance of the <see cref="T:Syncfusion.Office.IOfficeMathBox"/> class.
</summary>
</member>
<member name="M:Syncfusion.Office.OfficeMathBox.GetPropertyValue(System.Int32)">
<summary>
Gets the property value.
</summary>
</member>
<member name="M:Syncfusion.Office.OfficeMathBox.SetPropertyValue(System.Int32,System.Object)">
<summary>
Sets the property value.
</summary>
</member>
<member name="M:Syncfusion.Office.OfficeMathBox.GetDefValue(System.Int32)">
<summary>
Return default value of the respective key.
</summary>
</member>
<member name="M:Syncfusion.Office.OfficeMathBox.HasValue(System.Int32)">
<summary>
Determines whether the specified property key has value.
</summary>
<param name="propertyKey">The property key.</param>
<returns>
if the specified property key has value, set to <c>true</c>.
</returns>
</member>
<member name="M:Syncfusion.Office.OfficeMathBox.HasKey(System.Int32)">
<summary>
Returns the value indicating whether the key exists in the properties collection.
</summary>
<param name="key">The <b>integer</b> that specifies the key.</param>
<returns>
<b>True</b> if the specified key is present, otherwise <b>false</b>.
</returns>
</member>
<member name="M:Syncfusion.Office.OfficeMathBox.Clone(Syncfusion.Office.IOfficeMathEntity)">
<summary>
Clones the item
</summary>
</member>
<member name="M:Syncfusion.Office.OfficeMathBox.Close">
<summary>
Closes this Instance.
</summary>
</member>
<member name="P:Syncfusion.Office.OfficeMathBox.Alignment">
<summary>
Gets or sets a value that represents if the operator emulator must be used as an alignment point from which the next line operator emulator starts.
</summary>
<value><b>True</b> if the operator emulator must be used as an alignment point; otherwise, <b>false</b>.</value>
</member>
<member name="P:Syncfusion.Office.OfficeMathBox.EnableDifferential">
<summary>
Gets or sets a value that states whether the box acts as the mathematical differential.
</summary>
<value><b>True</b> if the box acts as the mathematical differential; otherwise, <b>false</b>.</value>
</member>
<member name="P:Syncfusion.Office.OfficeMathBox.NoBreak">
<summary>
Gets or sets a value whether breaks are allowed inside the box object.
</summary>
<value><b>True</b> if breaks are allowed inside the box object; otherwise, <b>false</b>.</value>
</member>
<member name="P:Syncfusion.Office.OfficeMathBox.OperatorEmulator">
<summary>
Gets or sets a value that states if the box and its contents behave as a single operator and inherit the properties of an operator.
</summary>
<value><b>True</b> if the box and its contents behave as a single operator and inherit the properties of an operator; otherwise, <b>false</b>.</value>
</member>
<member name="P:Syncfusion.Office.OfficeMathBox.Break">
<summary>
Represents an individual line breaks in an equation.
</summary>
</member>
<member name="P:Syncfusion.Office.OfficeMathBox.Equation">
<summary>
Specifies a <see cref="T:Syncfusion.Office.IOfficeMath"/> object that represents the base of the specified equation object.
</summary>
</member>
<member name="P:Syncfusion.Office.OfficeMathBox.PropertiesHash">
<summary>
Gets the PropertiesHash value.
</summary>
</member>
<member name="P:Syncfusion.Office.OfficeMathBox.Item(System.Int32)">
<summary>
Gets or sets the value for the property with specified key.
</summary>
</member>
<member name="P:Syncfusion.Office.OfficeMathBox.ControlProperties">
<summary>
Gets or sets the <see cref="T:Syncfusion.Office.IOfficeRunFormat"/> object that represent the control property of MathML function.
</summary>
</member>
<member name="T:Syncfusion.Office.OfficeMathDelimiter">
<summary>
Represents the MathML delimiter equation.
</summary>
</member>
<member name="F:Syncfusion.Office.OfficeMathDelimiter.m_propertiesHash">
<summary>
Member to hold the collection of properties values and its keys.
</summary>
</member>
<member name="F:Syncfusion.Office.OfficeMathDelimiter.m_equation">
<summary>
Specifies a <see cref="T:Syncfusion.Office.IOfficeMath"/> object that represents the base of the specified equation object.
</summary>
</member>
<member name="F:Syncfusion.Office.OfficeMathDelimiter.m_controlProperties">
<summary>
Represents the character format
</summary>
</member>
<member name="M:Syncfusion.Office.OfficeMathDelimiter.#ctor(Syncfusion.Office.IOfficeMathEntity)">
<summary>
Initializes a new instance of the <see cref="T:Syncfusion.Office.IOfficeMathDelimiter"/> class.
</summary>
</member>
<member name="M:Syncfusion.Office.OfficeMathDelimiter.GetPropertyValue(System.Int32)">
<summary>
Gets the property value.
</summary>
</member>
<member name="M:Syncfusion.Office.OfficeMathDelimiter.SetPropertyValue(System.Int32,System.Object)">
<summary>
Sets the property Value.
</summary>
</member>
<member name="M:Syncfusion.Office.OfficeMathDelimiter.GetDefValue(System.Int32)">
<summary>
Return default value of the respective key.
</summary>
</member>
<member name="M:Syncfusion.Office.OfficeMathDelimiter.HasValue(System.Int32)">
<summary>
Determines whether the specified property key has value.
</summary>
<param name="propertyKey">The property key.</param>
<returns>
if the specified property key has value, set to <c>true</c>.
</returns>
</member>
<member name="M:Syncfusion.Office.OfficeMathDelimiter.HasKey(System.Int32)">
<summary>
Returns the value indicating whether the key exists in the properties collection.
</summary>
<param name="key">The <b>integer</b> that specifies the key.</param>
<returns>
<b>True</b> if the specified key is present, otherwise <b>false</b>.
</returns>
</member>
<member name="M:Syncfusion.Office.OfficeMathDelimiter.Clone(Syncfusion.Office.IOfficeMathEntity)">
<summary>
Clones the item
</summary>
</member>
<member name="M:Syncfusion.Office.OfficeMathDelimiter.Close">
<summary>
Closes this Instance.
</summary>
</member>
<member name="P:Syncfusion.Office.OfficeMathDelimiter.BeginCharacter">
<summary>
Gets or sets a short that represents the beginning delimiter character.
</summary>
</member>
<member name="P:Syncfusion.Office.OfficeMathDelimiter.EndCharacter">
<summary>
Gets or sets a short that represents the ending delimiter character.
</summary>
</member>
<member name="P:Syncfusion.Office.OfficeMathDelimiter.IsGrow">
<summary>
Gets or sets a value that represents whether delimiter characters grow to the full height of the arguments that they contain.
</summary>
<value><b>True</b> if delimiter characters grow to the full height of the arguments that they contain; otherwise, <b>false</b>.</value>
</member>
<member name="P:Syncfusion.Office.OfficeMathDelimiter.Seperator">
<summary>
Gets or sets a short that represents the separator character in a math delimiter object when the math delimiter object contains two or more arguments.
</summary>
</member>
<member name="P:Syncfusion.Office.OfficeMathDelimiter.DelimiterShape">
<summary>
Gets or sets a MathDelimiterShapeType constant that represents the appearance of delimiters.
</summary>
</member>
<member name="P:Syncfusion.Office.OfficeMathDelimiter.Equation">
<summary>
Gets a <see cref="T:Syncfusion.Office.IOfficeMaths"/> object that represents the base of the specified equation object. Read-only.
</summary>
</member>
<member name="P:Syncfusion.Office.OfficeMathDelimiter.PropertiesHash">
<summary>
Gets the PropertiesHash value.
</summary>
</member>
<member name="P:Syncfusion.Office.OfficeMathDelimiter.Item(System.Int32)">
<summary>
Gets or sets the value for the property with specified key.
</summary>
</member>
<member name="P:Syncfusion.Office.OfficeMathDelimiter.ControlProperties">
<summary>
Gets or sets the <see cref="T:Syncfusion.Office.IOfficeRunFormat"/> object that represent the control property of MathML function.
</summary>
</member>
<member name="T:Syncfusion.Office.OfficeMathEquationArray">
<summary>
Represents a mathematical equation array object, consisting of one or more equations that can be vertically justified as a unit respect to surrounding text on the line.
</summary>
</member>
<member name="F:Syncfusion.Office.OfficeMathEquationArray.m_equation">
<summary>
Specifies an <see cref="T:Syncfusion.Office.IOfficeMaths"/> object that represents the base of the specified equation object.
</summary>
</member>
<member name="F:Syncfusion.Office.OfficeMathEquationArray.m_propertiesHash">
<summary>
Holds the collection of properties values and its keys.
</summary>
</member>
<member name="F:Syncfusion.Office.OfficeMathEquationArray.m_controlProperties">
<summary>
Represents the character format
</summary>
</member>
<member name="M:Syncfusion.Office.OfficeMathEquationArray.#ctor(Syncfusion.Office.IOfficeMathEntity)">
<summary>
Initializes a new instance of the <see cref="T:Syncfusion.Office.IOfficeMathEquationArray"/> class.
</summary>
</member>
<member name="M:Syncfusion.Office.OfficeMathEquationArray.GetPropertyValue(System.Int32)">
<summary>
Gets the property value.
</summary>
<param name="propKey">The prop key.</param>
<returns></returns>
</member>
<member name="M:Syncfusion.Office.OfficeMathEquationArray.SetPropertyValue(System.Int32,System.Object)">
<summary>
Sets the property value.
</summary>
<param name="propKey">The property key.</param>
<param name="value">The value.</param>
</member>
<member name="M:Syncfusion.Office.OfficeMathEquationArray.GetDefValue(System.Int32)">
<summary>
Sets the default properties.
</summary>
</member>
<member name="M:Syncfusion.Office.OfficeMathEquationArray.HasValue(System.Int32)">
<summary>
Determines whether the specified property key has value.
</summary>
<param name="propertyKey">The property key.</param>
<returns>
if the specified property key has value, set to <c>true</c>.
</returns>
</member>
<member name="M:Syncfusion.Office.OfficeMathEquationArray.HasKey(System.Int32)">
<summary>
Returns the value indicating whether the key exists in the properties collection.
</summary>
<param name="key">The <b>integer</b> that specifies the key.</param>
<returns>
<b>True</b> if the specified key is present, otherwise <b>false</b>.
</returns>
</member>
<member name="M:Syncfusion.Office.OfficeMathEquationArray.Clone(Syncfusion.Office.IOfficeMathEntity)">
<summary>
Clones the item
</summary>
</member>
<member name="M:Syncfusion.Office.OfficeMathEquationArray.Close">
<summary>
Closes the instances.
</summary>
</member>
<member name="P:Syncfusion.Office.OfficeMathEquationArray.Equation">
<summary>
Gets a <see cref="T:Syncfusion.Office.IOfficeMaths"/> object that represents the base of the specified equation object.
</summary>
</member>
<member name="P:Syncfusion.Office.OfficeMathEquationArray.VerticalAlignment">
<summary>
Gets or sets the vertical alignment for an equation array.
</summary>
<value>The <see cref="T:Syncfusion.Office.MathVerticalAlignment"/> member that specifies vertical alignment for an equation array.</value>
</member>
<member name="P:Syncfusion.Office.OfficeMathEquationArray.ExpandEquationContainer">
<summary>
Gets or sets a boolean that represents whether the equations in an equation array are distributed equally within the margins of its container, such as a column, cell, or page width.
</summary>
</member>
<member name="P:Syncfusion.Office.OfficeMathEquationArray.ExpandEquationContent">
<summary>
Gets or sets a boolean that represents whether the equations in an equation array are spaced to the maximum width of the equation array.
</summary>
</member>
<member name="P:Syncfusion.Office.OfficeMathEquationArray.RowSpacing">
<summary>
Gets or sets an float that represents the spacing between the rows in an equation array.
</summary>
</member>
<member name="P:Syncfusion.Office.OfficeMathEquationArray.RowSpacingRule">
<summary>
Gets or sets spacing for an equation array.
</summary>
<value>The <see cref="T:Syncfusion.Office.SpacingRule"/> member that specifies the spacing in an equation array.</value>
</member>
<member name="P:Syncfusion.Office.OfficeMathEquationArray.ControlProperties">
<summary>
Gets or sets the <see cref="T:Syncfusion.Office.IOfficeRunFormat"/> object that represent the control property of MathML function.
</summary>
</member>
<member name="P:Syncfusion.Office.OfficeMathEquationArray.PropertiesHash">
<summary>
Gets the PropertiesHash value.
</summary>
</member>
<member name="P:Syncfusion.Office.OfficeMathEquationArray.Item(System.Int32)">
<summary>
Gets or sets the value for the property with specified key.
</summary>
</member>
<member name="T:Syncfusion.Office.OfficeMathFraction">
<summary>
Represents a fraction, consisting of a numerator and denominator separated by a fraction bar.
</summary>
</member>
<member name="F:Syncfusion.Office.OfficeMathFraction.m_denominator">
<summary>
Specifies an <see cref="T:Syncfusion.Office.IOfficeMath"/> object that represents the denominator for an equation that contains a fraction.
</summary>
</member>
<member name="F:Syncfusion.Office.OfficeMathFraction.m_numerator">
<summary>
Specifies a <see cref="T:Syncfusion.Office.IOfficeMath"/> object that represents the numerator for a fraction.
</summary>
</member>
<member name="F:Syncfusion.Office.OfficeMathFraction.m_controlProperties">
<summary>
Represents the character format
</summary>
</member>
<member name="M:Syncfusion.Office.OfficeMathFraction.#ctor(Syncfusion.Office.IOfficeMathEntity)">
<summary>
Initializes a new instance of the <see cref="T:Syncfusion.Office.OfficeMathFraction"/> class.
</summary>
</member>
<member name="M:Syncfusion.Office.OfficeMathFraction.Close">
<summary>
Closes this instance.
</summary>
</member>
<member name="M:Syncfusion.Office.OfficeMathFraction.GetPropertyValue(System.Int32)">
<summary>
Gets the property value.
</summary>
</member>
<member name="M:Syncfusion.Office.OfficeMathFraction.SetPropertyValue(System.Int32,System.Object)">
<summary>
Sets the property value.
</summary>
</member>
<member name="M:Syncfusion.Office.OfficeMathFraction.GetDefValue(System.Int32)">
<summary>
Return default value of the respective key.
</summary>
</member>
<member name="M:Syncfusion.Office.OfficeMathFraction.HasValue(System.Int32)">
<summary>
Determines whether the specified property key has value.
</summary>
<param name="propertyKey">The property key.</param>
<returns>
if the specified property key has value, set to <c>true</c>.
</returns>
</member>
<member name="M:Syncfusion.Office.OfficeMathFraction.HasKey(System.Int32)">
<summary>
Returns the value indicating whether the key exists in the properties collection.
</summary>
<param name="key">The <b>integer</b> that specifies the key.</param>
<returns>
<b>True</b> if the specified key is present, otherwise <b>false</b>.
</returns>
</member>
<member name="M:Syncfusion.Office.OfficeMathFraction.Clone(Syncfusion.Office.IOfficeMathEntity)">
<summary>
Clones the item
</summary>
</member>
<member name="P:Syncfusion.Office.OfficeMathFraction.FractionType">
<summary>
Gets or sets a <see cref="T:Syncfusion.Office.MathFractionType"/> constant that represents the layout of a fraction. Default value is <b>bar</b>.
</summary>
</member>
<member name="P:Syncfusion.Office.OfficeMathFraction.Denominator">
<summary>
Gets an <see cref="T:Syncfusion.Office.IOfficeMath"/> object that represents the denominator for an equation that contains a fraction.
</summary>
</member>
<member name="P:Syncfusion.Office.OfficeMathFraction.Numerator">
<summary>
Gets an <see cref="T:Syncfusion.Office.IOfficeMath"/> object that represents the numerator for a fraction.
</summary>
</member>
<member name="P:Syncfusion.Office.OfficeMathFraction.PropertiesHash">
<summary>
Gets the propertieshash value.
</summary>
</member>
<member name="P:Syncfusion.Office.OfficeMathFraction.Item(System.Int32)">
<summary>
Gets or sets the value for the property with specified key.
</summary>
</member>
<member name="P:Syncfusion.Office.OfficeMathFraction.ControlProperties">
<summary>
Gets or sets the <see cref="T:Syncfusion.Office.IOfficeRunFormat"/> object that represent the control property of MathML function.
</summary>
</member>
<member name="T:Syncfusion.Office.OfficeMathFunction">
<summary>
Represents the application of a function or an argument in an equation that consists of a function name, such as sin or cos, and an argument.
</summary>
</member>
<member name="F:Syncfusion.Office.OfficeMathFunction.m_equation">
<summary>
Specifies a <see cref="T:Syncfusion.Office.OfficeMath"/> object that represents the base of the specified equation object.
</summary>
</member>
<member name="F:Syncfusion.Office.OfficeMathFunction.m_fName">
<summary>
Gets a <see cref="T:Syncfusion.Office.OfficeMath"/> object that represents the name of a mathematical function, such as sin or cos.
</summary>
</member>
<member name="F:Syncfusion.Office.OfficeMathFunction.m_controlProperties">
<summary>
Represents the character format
</summary>
</member>
<member name="M:Syncfusion.Office.OfficeMathFunction.#ctor(Syncfusion.Office.IOfficeMathEntity)">
<summary>
Initializes a new instance of the <see cref="T:Syncfusion.Office.OfficeMathFunction"/> class.
</summary>
</member>
<member name="M:Syncfusion.Office.OfficeMathFunction.Clone(Syncfusion.Office.IOfficeMathEntity)">
<summary>
Clones the item
</summary>
</member>
<member name="P:Syncfusion.Office.OfficeMathFunction.Equation">
<summary>
Gets a <see cref="T:Syncfusion.Office.OfficeMath"/> object that represents the base of the specified equation object.
</summary>
</member>
<member name="P:Syncfusion.Office.OfficeMathFunction.FunctionName">
<summary>
Gets a <see cref="T:Syncfusion.Office.OfficeMath"/> object that represents the name of a mathematical function, such as sin or cos.
</summary>
</member>
<member name="P:Syncfusion.Office.OfficeMathFunction.ControlProperties">
<summary>
Gets or sets the <see cref="T:Syncfusion.Office.IOfficeRunFormat"/> object that represent the control property of MathML function.
</summary>
</member>
<!-- Badly formed XML comment ignored for member "T:Syncfusion.Office.OfficeMathGroupCharacter" -->
<member name="F:Syncfusion.Office.OfficeMathGroupCharacter.m_propertiesHash">
<summary>
Member to hold the collection of properties values and its keys.
</summary>
</member>
<member name="F:Syncfusion.Office.OfficeMathGroupCharacter.m_equation">
<summary>
Specifies an <see cref="T:Syncfusion.Office.IOfficeMath"/> object that represents the base of the specified equation object.
</summary>
</member>
<member name="F:Syncfusion.Office.OfficeMathGroupCharacter.m_controlProperties">
<summary>
Represents the character format
</summary>
</member>
<member name="M:Syncfusion.Office.OfficeMathGroupCharacter.#ctor(Syncfusion.Office.IOfficeMathEntity)">
<summary>
Initializes a new instance of the <see cref="T:Syncfusion.Office.IOfficeMathGroupCharacter"/> class.
</summary>
</member>
<member name="M:Syncfusion.Office.OfficeMathGroupCharacter.GetPropertyValue(System.Int32)">
<summary>
Gets the property value.
</summary>
</member>
<member name="M:Syncfusion.Office.OfficeMathGroupCharacter.SetPropertyValue(System.Int32,System.Object)">
<summary>
Sets the property value.
</summary>
</member>
<member name="M:Syncfusion.Office.OfficeMathGroupCharacter.GetDefValue(System.Int32)">
<summary>
Return default value of the respective key.
</summary>
</member>
<member name="M:Syncfusion.Office.OfficeMathGroupCharacter.HasValue(System.Int32)">
<summary>
Determines whether the specified property key has value.
</summary>
<param name="propertyKey">The property key.</param>
<returns>
if the specified property key has value, set to <c>true</c>.
</returns>
</member>
<member name="M:Syncfusion.Office.OfficeMathGroupCharacter.HasKey(System.Int32)">
<summary>
Returns the value indicating whether the key exists in the properties collection.
</summary>
<param name="key">The <b>integer</b> that specifies the key.</param>
<returns>
<b>True</b> if the specified key is present, otherwise <b>false</b>.
</returns>
</member>
<member name="M:Syncfusion.Office.OfficeMathGroupCharacter.Clone(Syncfusion.Office.IOfficeMathEntity)">
<summary>
Clones the item
</summary>
</member>
<member name="M:Syncfusion.Office.OfficeMathGroupCharacter.Close">
<summary>
Closes this Instance.
</summary>
</member>
<member name="P:Syncfusion.Office.OfficeMathGroupCharacter.HasAlignTop">
<summary>
Gets or sets a value that represents whether the grouping character is aligned vertically with the surrounding text or whether the base text that is either above or below the grouping character is aligned vertically with the surrounding text. Read/write.
</summary>
<value><b>True</b> if the grouping character is aligned vertically with the surrounding text ; otherwise, <b>false</b>.</value>
</member>
<member name="P:Syncfusion.Office.OfficeMathGroupCharacter.GroupCharacter">
<summary>
Gets or sets a short that represents the character placed above or below text in a group character object. Read/write.
</summary>
</member>
<member name="P:Syncfusion.Office.OfficeMathGroupCharacter.HasCharacterTop">
<summary>
Gets or sets a value that represents whether the grouping character is placed above the base text of the group character object. Read/write.
</summary>
<value><b>True</b> if the grouping character is placed above the base text of the group character object; otherwise, <b>false</b>.</value>
</member>
<member name="P:Syncfusion.Office.OfficeMathGroupCharacter.Equation">
<summary>
Gets an <see cref="T:Syncfusion.Office.IOfficeMath"/> object that represents the base of the specified equation object.
</summary>
</member>
<member name="P:Syncfusion.Office.OfficeMathGroupCharacter.PropertiesHash">
<summary>
Gets the PropertiesHash value.
</summary>
</member>
<member name="P:Syncfusion.Office.OfficeMathGroupCharacter.Item(System.Int32)">
<summary>
Gets or sets the value for the property with specified key.
</summary>
</member>
<member name="P:Syncfusion.Office.OfficeMathGroupCharacter.ControlProperties">
<summary>
Gets or sets the <see cref="T:Syncfusion.Office.IOfficeRunFormat"/> object that represent the control property of MathML function.
</summary>
</member>
<member name="T:Syncfusion.Office.OfficeMathLeftScript">
<summary>
Represents the class of an equation that contains a superscript or subscript to the left of the base.
</summary>
</member>
<member name="F:Syncfusion.Office.OfficeMathLeftScript.m_equation">
<summary>
Gets an <see cref="T:Syncfusion.Office.IOfficeMath"/> object that represents the base of the specified equation object.
</summary>
</member>
<member name="F:Syncfusion.Office.OfficeMathLeftScript.m_subScript">
<summary>
Gets the subscript for a Leftscript object. Read-only.
</summary>
</member>
<member name="F:Syncfusion.Office.OfficeMathLeftScript.m_superScript">
<summary>
Gets the superscript for a Leftscript object. Read-only.
</summary>
</member>
<member name="F:Syncfusion.Office.OfficeMathLeftScript.m_controlProperties">
<summary>
Represents the character format
</summary>
</member>
<member name="M:Syncfusion.Office.OfficeMathLeftScript.#ctor(Syncfusion.Office.IOfficeMathEntity)">
<summary>
Initializes a new instance of the <see cref="T:Syncfusion.Office.IOfficeMathLeftScript"/> class.
</summary>
</member>
<member name="M:Syncfusion.Office.OfficeMathLeftScript.Close">
<summary>
Closes this Instance.
</summary>
</member>
<member name="M:Syncfusion.Office.OfficeMathLeftScript.Clone(Syncfusion.Office.IOfficeMathEntity)">
<summary>
Clones the item
</summary>
</member>
<member name="P:Syncfusion.Office.OfficeMathLeftScript.Equation">
<summary>
Gets an <see cref="T:Syncfusion.Office.IOfficeMath"/> object that represents the base of the specified equation object.
</summary>
</member>
<member name="P:Syncfusion.Office.OfficeMathLeftScript.Subscript">
<summary>
Gets the subscript for leftscript object. Read-only.
</summary>
</member>
<member name="P:Syncfusion.Office.OfficeMathLeftScript.Superscript">
<summary>
Gets the superscript for a leftscript object. Read-only.
</summary>
</member>
<member name="P:Syncfusion.Office.OfficeMathLeftScript.ControlProperties">
<summary>
Gets or sets the <see cref="T:Syncfusion.Office.IOfficeRunFormat"/> object that represent the control property of MathML function.
</summary>
</member>
<member name="T:Syncfusion.Office.OfficeMathLimit">
<summary>
Represents the MathLimit Function.
</summary>s
</member>
<member name="F:Syncfusion.Office.OfficeMathLimit.m_limitType">
<summary>
Specifies a <see cref="T:Syncfusion.Office.OfficeMathLimit"/> type to represent either a lower or upperLimit.
</summary>
</member>
<member name="F:Syncfusion.Office.OfficeMathLimit.m_equation">
<summary>
Specifies an <see cref="T:Syncfusion.Office.IOfficeMath"/> object that represents the base of the specified equation object.
</summary>
</member>
<member name="F:Syncfusion.Office.OfficeMathLimit.m_limit">
<summary>
Returns an math object that represents the limit .
</summary>
</member>
<member name="F:Syncfusion.Office.OfficeMathLimit.m_controlProperties">
<summary>
Represents the character format
</summary>
</member>
<member name="M:Syncfusion.Office.OfficeMathLimit.#ctor(Syncfusion.Office.IOfficeMathEntity)">
<summary>
Initializes a new instance of the <see cref="T:Syncfusion.Office.IOfficeMathLimit"/> class.
</summary>
</member>
<member name="M:Syncfusion.Office.OfficeMathLimit.Close">
<summary>
Closes this Instance.
</summary>
</member>
<member name="M:Syncfusion.Office.OfficeMathLimit.Clone(Syncfusion.Office.IOfficeMathEntity)">
<summary>
Clones the item
</summary>
</member>
<member name="P:Syncfusion.Office.OfficeMathLimit.LimitType">
<summary>
Gets or sets a <see cref="T:Syncfusion.Office.OfficeMathLimit"/> type to represent either a low and upper limit.
</summary>
</member>
<member name="P:Syncfusion.Office.OfficeMathLimit.Equation">
<summary>
Gets an <see cref="T:Syncfusion.Office.IOfficeMath"/> object that represents the base of the specified equation object.
</summary>
</member>
<member name="P:Syncfusion.Office.OfficeMathLimit.Limit">
<summary>
Gets an <see cref="T:Syncfusion.Office.IOfficeMath"/> object that represents the base of the specified equation object.
</summary>
</member>
<member name="P:Syncfusion.Office.OfficeMathLimit.ControlProperties">
<summary>
Gets or sets the <see cref="T:Syncfusion.Office.IOfficeRunFormat"/> object that represent the control property of MathML function.
</summary>
</member>
<member name="T:Syncfusion.Office.OfficeMathMatrix">
<summary>
Represents an interface for mathematical matrix, which contain elements in set of rows and columns.
</summary>
</member>
<member name="F:Syncfusion.Office.OfficeMathMatrix.RowSpacingKey">
<summary>
Keys.
</summary>
</member>
<member name="F:Syncfusion.Office.OfficeMathMatrix.m_mathMatrixRows">
<summary>
Specifies the <see cref="T:Syncfusion.Office.IOfficeMathMatrixRows"/> object that represent a matrix row.
</summary>
</member>
<member name="F:Syncfusion.Office.OfficeMathMatrix.m_mathMatrixColumns">
<summary>
Specifies the <see cref="T:Syncfusion.Office.IOfficeMathMatrixColumns"/> object that represent a matrix column.
</summary>
</member>
<member name="F:Syncfusion.Office.OfficeMathMatrix.m_propertiesHash">
<summary>
Holds the collection of properties values and its keys.
</summary>
</member>
<member name="F:Syncfusion.Office.OfficeMathMatrix.m_controlProperties">
<summary>
Represents the character format
</summary>
</member>
<member name="M:Syncfusion.Office.OfficeMathMatrix.GetPropertyValue(System.Int32)">
<summary>
Gets the property value.
</summary>
<param name="propKey">The prop key.</param>
<returns></returns>
</member>
<member name="M:Syncfusion.Office.OfficeMathMatrix.SetPropertyValue(System.Int32,System.Object)">
<summary>
Sets the property value.
</summary>
<param name="propKey">The property key.</param>
<param name="value">The value.</param>
</member>
<member name="M:Syncfusion.Office.OfficeMathMatrix.GetDefValue(System.Int32)">
<summary>
Sets the default properties.
</summary>
</member>
<member name="M:Syncfusion.Office.OfficeMathMatrix.HasValue(System.Int32)">
<summary>
Determines whether the specified property key has value.
</summary>
<param name="propertyKey">The property key.</param>
<returns>
if the specified property key has value, set to <c>true</c>.
</returns>
</member>
<member name="M:Syncfusion.Office.OfficeMathMatrix.HasKey(System.Int32)">
<summary>
Returns the value indicating whether the key exists in the properties collection.
</summary>
<param name="key">The <b>integer</b> that specifies the key.</param>
<returns>
<b>True</b> if the specified key is present, otherwise <b>false</b>.
</returns>
</member>
<member name="M:Syncfusion.Office.OfficeMathMatrix.Clone(Syncfusion.Office.IOfficeMathEntity)">
<summary>
Clones the item
</summary>
</member>
<member name="M:Syncfusion.Office.OfficeMathMatrix.RemoveMatrixItems(System.Int32,System.Int32,System.Int32,System.Int32)">
<summary>
Removes the items in matrix
</summary>
<param name="startColIndex">Start column index in range</param>
<param name="startRowIndex">Start row index in range</param>
<param name="endColIndex">End column index in range</param>
<param name="endRowIndex">End row index in range</param>
</member>
<member name="M:Syncfusion.Office.OfficeMathMatrix.ApplyColumnProperties">
<summary>
Applies the column properties collection values to each column
</summary>
</member>
<member name="M:Syncfusion.Office.OfficeMathMatrix.UpdateColumnProperties(Syncfusion.Office.OfficeMathMatrix)">
<summary>
Updates the values of column properties collection using column property values.
</summary>
</member>
<member name="M:Syncfusion.Office.OfficeMathMatrix.GetRangeOfArguments(System.Int32,System.Int32,System.Int32,System.Int32,Syncfusion.Office.OfficeMaths)">
<summary>
Gets the range of arguments.
</summary>
</member>
<member name="M:Syncfusion.Office.OfficeMathMatrix.CreateArguments(System.Int32,System.Int32,System.Int32,System.Int32)">
<summary>
Creates an empty arguments for matrix
</summary>
<param name="startColIndex">Start column index in range</param>
<param name="startRowIndex">Start row index in range</param>
<param name="endColIndex">End column index in range</param>
<param name="endRowIndex">End row index in range</param>
</member>
<member name="M:Syncfusion.Office.OfficeMathMatrix.UpdateColumns">
<summary>
Updates the number of matrix columns based on the number of cells present in the rows of the matrix.
</summary>
</member>
<member name="M:Syncfusion.Office.OfficeMathMatrix.GetMaximumCellCount">
<summary>
Gets the maximum cell count.
</summary>
</member>
<member name="M:Syncfusion.Office.OfficeMathMatrix.Close">
<summary>
Closes this Instance.
</summary>
</member>
<member name="P:Syncfusion.Office.OfficeMathMatrix.VerticalAlignment">
<summary>
Gets or sets <see cref="T:Syncfusion.Office.MathVerticalAlignment"/> that represents the vertical alignment for a matrix.
</summary>
</member>
<member name="P:Syncfusion.Office.OfficeMathMatrix.ColumnWidth">
<summary>
Gets or sets a float that represents the spacing between columns in a matrix.
</summary>
</member>
<member name="P:Syncfusion.Office.OfficeMathMatrix.ColumnSpacingRule">
<summary>
Gets or sets a <see cref="T:Syncfusion.Office.SpacingRule"/> that represents the spacing rule for the space that appears between columns in a matrix.
</summary>
</member>
<member name="P:Syncfusion.Office.OfficeMathMatrix.Columns">
<summary>
Gets a <see cref="T:Syncfusion.Office.OfficeMathMatrixColumns"/> object that represents the columns in a matrix.
</summary>
</member>
<member name="P:Syncfusion.Office.OfficeMathMatrix.ColumnSpacing">
<summary>
Gets or sets an float that represents the spacing for columns in a matrix.
</summary>
</member>
<member name="P:Syncfusion.Office.OfficeMathMatrix.HidePlaceHolders">
<summary>
Gets or sets a boolean that represents whether placeholders in a matrix are hidden from display
</summary>
<value><b>True</b> placeholders do not appear in the matrix; otherwise, <b>false</b>placeholders appear in the matrix.</value>
</member>
<member name="P:Syncfusion.Office.OfficeMathMatrix.ColumnProperties">
<summary>
Gets or sets the properties of an <see cref="T:Syncfusion.Office.IOfficeMathMatrixColumn"/> in an <see cref="T:Syncfusion.Office.IOfficeMathMatrix"/>
</summary>
</member>
<member name="P:Syncfusion.Office.OfficeMathMatrix.Rows">
<summary>
Gets or sets the <see cref="T:Syncfusion.Office.IOfficeMathMatrixRows"/> object that represent a matrix Row.
</summary>
</member>
<member name="P:Syncfusion.Office.OfficeMathMatrix.RowSpacing">
<summary>
Gets or sets an float that represents the spacing for rows in a matrix.
</summary>
</member>
<member name="P:Syncfusion.Office.OfficeMathMatrix.RowSpacingRule">
<summary>
Gets or sets a <see cref="T:Syncfusion.Office.SpacingRule"/> that represents the spacing rule for rows in a matrix.
</summary>
</member>
<member name="P:Syncfusion.Office.OfficeMathMatrix.ControlProperties">
<summary>
Gets or sets the <see cref="T:Syncfusion.Office.IOfficeRunFormat"/> object that represent the control property of MathML function.
</summary>
</member>
<member name="P:Syncfusion.Office.OfficeMathMatrix.PropertiesHash">
<summary>
Gets the PropertiesHash value.
</summary>
</member>
<member name="P:Syncfusion.Office.OfficeMathMatrix.Item(System.Int32)">
<summary>
Gets or sets the value for the property with specified key.
</summary>
</member>
<member name="M:Syncfusion.Office.OfficeMathMatrixColumns.Add(System.Int32)">
<summary>
Adds <see cref="T:Syncfusion.Office.IOfficeMathMatrixColumn"/> instance to the collection at specified index.
</summary>
<param name="index">The Index, where to add the <see cref="T:Syncfusion.Office.IOfficeMathMatrixColumn"/> instance.</param>
<returns>Returns the newly added <see cref="T:Syncfusion.Office.IOfficeMathMatrixColumn"/>. </returns>
</member>
<member name="M:Syncfusion.Office.OfficeMathMatrixColumns.Add">
<summary>
Adds <see cref="T:Syncfusion.Office.IOfficeMathMatrixColumn"/> instance to the collection.
</summary>
<returns>Returns the newly added <see cref="T:Syncfusion.Office.IOfficeMathMatrixColumn"/>. </returns>
</member>
<member name="M:Syncfusion.Office.OfficeMathMatrixColumns.CloneItemsTo(Syncfusion.Office.OfficeMathMatrixColumns)">
<summary>
Clone the items in collection
</summary>
<param name="items"></param>
</member>
<member name="M:Syncfusion.Office.OfficeMathMatrixColumns.Remove(Syncfusion.Office.IOfficeMathEntity)">
<summary>
Removes the item in collection
</summary>
</member>
<member name="M:Syncfusion.Office.OfficeMathMatrixColumns.#ctor(Syncfusion.Office.IOfficeMathEntity)">
<summary>
Initializes a new instance of the <see cref="T:Syncfusion.Office.OfficeMathMatrixColumns"/> class.
</summary>
</member>
<member name="P:Syncfusion.Office.OfficeMathMatrixColumns.Item(System.Int32)">
<summary>
Gets the specified item in the collection.
</summary>
</member>
<member name="M:Syncfusion.Office.OfficeMathMatrixRows.Remove(Syncfusion.Office.IOfficeMathEntity)">
<summary>
Removes the item in collection
</summary>
</member>
<member name="M:Syncfusion.Office.OfficeMathMatrixRows.Add(System.Int32)">
<summary>
Adds <see cref="T:Syncfusion.Office.IOfficeMathMatrixRow"/> instance to the collection at specified index.
</summary>
<param name="index">The Index, where to add the <see cref="T:Syncfusion.Office.IOfficeMathMatrixRow"/> instance.</param>
<returns>Returns the newly added <see cref="T:Syncfusion.Office.IOfficeMathMatrixRow"/>. </returns>
</member>
<member name="M:Syncfusion.Office.OfficeMathMatrixRows.Add">
<summary>
Adds <see cref="T:Syncfusion.Office.IOfficeMathMatrixRow"/> instance to the collection.
</summary>
<returns>Returns the newly added <see cref="T:Syncfusion.Office.IOfficeMathMatrixRow"/>. </returns>
</member>
<member name="M:Syncfusion.Office.OfficeMathMatrixRows.CloneItemsTo(Syncfusion.Office.OfficeMathMatrixRows)">
<summary>
Clone the items in collection
</summary>
</member>
<member name="M:Syncfusion.Office.OfficeMathMatrixRows.#ctor(Syncfusion.Office.IOfficeMathEntity)">
<summary>
Initializes a new instance of the <see cref="T:Syncfusion.Office.OfficeMathMatrixRows"/> class.
</summary>
</member>
<member name="P:Syncfusion.Office.OfficeMathMatrixRows.Item(System.Int32)">
<summary>
Gets the specified item in the collection.
</summary>
</member>
<member name="T:Syncfusion.Office.MathMLParser">
<summary>
Represents the parser for MathML items.
</summary>
</member>
<member name="M:Syncfusion.Office.MathMLParser.ParseMathPara(System.Xml.XmlReader,Syncfusion.Office.IOfficeMathParagraph,Syncfusion.Office.DocumentParser)">
<summary>
Parse OMathPara which holds the MathML item.
</summary>
<param name="reader">Represents the reader to read MathML</param>
<param name="mathPara">Represents OfficeMathPara to hold MathML element</param>
<param name="documentParser">Represents documentparser</param>
</member>
<member name="M:Syncfusion.Office.MathMLParser.ParseMath(System.Xml.XmlReader,Syncfusion.Office.OfficeMath,Syncfusion.Office.DocumentParser)">
<summary>
Parse officemath which holds the mathml functions
</summary>
<param name="reader">Represents the reader to read mathml</param>
<param name="officeMath">Represents officemath element</param>
</member>
<member name="M:Syncfusion.Office.MathMLParser.ParseMath(System.Xml.XmlReader,Syncfusion.Office.OfficeMath)">
<summary>
Parse officemath which holds the mathml functions
</summary>
<param name="reader">Represents the reader to read mathml</param>
<param name="officeMath">Represents officemath element</param>
</member>
<member name="M:Syncfusion.Office.MathMLParser.ParseMathArgumentProperties(System.Xml.XmlReader,Syncfusion.Office.OfficeMath)">
<summary>
Parse argument properties
</summary>
</member>
<member name="M:Syncfusion.Office.MathMLParser.ParseMathProperties(System.Xml.XmlReader,Syncfusion.Office.OfficeMathProperties)">
<summary>
parse the math properties.
</summary>
</member>
<member name="M:Syncfusion.Office.MathMLParser.ParseNArtLimitLocationType(System.Xml.XmlReader,Syncfusion.Office.OfficeMathProperties)">
<summary>
parse the NAry limit location type.
</summary>
</member>
<member name="M:Syncfusion.Office.MathMLParser.ParseLimitLocationType(System.Xml.XmlReader,Syncfusion.Office.OfficeMathProperties)">
<summary>
parse the integral limit location type of math properties.
</summary>
</member>
<member name="M:Syncfusion.Office.MathMLParser.ParseDefaultJustification(System.Xml.XmlReader,Syncfusion.Office.OfficeMathProperties)">
<summary>
parse the default justification of math properties.
</summary>
</member>
<member name="M:Syncfusion.Office.MathMLParser.ParseBreakOnSubtractOperator(System.Xml.XmlReader,Syncfusion.Office.OfficeMathProperties)">
<summary>
parse the break on subtract operator of math properties.
</summary>
</member>
<member name="M:Syncfusion.Office.MathMLParser.ParseBreakOnBinaryOperator(System.Xml.XmlReader,Syncfusion.Office.OfficeMathProperties)">
<summary>
parse the break on binary operator of math properties.
</summary>
</member>
<member name="M:Syncfusion.Office.MathMLParser.ParseMathLimit(System.Xml.XmlReader,Syncfusion.Office.OfficeMathLimit)">
<summary>
parse the math limit.
</summary>
</member>
<member name="M:Syncfusion.Office.MathMLParser.ParseMathLimitProperties(System.Xml.XmlReader,Syncfusion.Office.OfficeMathLimit)">
<summary>
Parse MathML limit properties.
</summary>
</member>
<member name="M:Syncfusion.Office.MathMLParser.ParseMathPhantom(System.Xml.XmlReader,Syncfusion.Office.OfficeMathPhantom)">
<summary>
Parse MathML phantom function.
</summary>
</member>
<member name="M:Syncfusion.Office.MathMLParser.ParseMathPhantomProperties(System.Xml.XmlReader,Syncfusion.Office.OfficeMathPhantom)">
<summary>
Parser MathML phantom properties.
</summary>
</member>
<member name="M:Syncfusion.Office.MathMLParser.ParseMathMatrix(System.Xml.XmlReader,Syncfusion.Office.OfficeMathMatrix)">
<summary>
Parser MathML matrix function.
</summary>
</member>
<member name="M:Syncfusion.Office.MathMLParser.ParseMathMatrixProperties(System.Xml.XmlReader,Syncfusion.Office.OfficeMathMatrix)">
<summary>
Parser MathML matrix properties.
</summary>
</member>
<member name="M:Syncfusion.Office.MathMLParser.ParserMathColumns(System.Xml.XmlReader,Syncfusion.Office.OfficeMathMatrix)">
<summary>
Parser MathML math matrix.
</summary>
</member>
<member name="M:Syncfusion.Office.MathMLParser.ParseMathMatrixColumn(System.Xml.XmlReader,Syncfusion.Office.MatrixColumnProperties)">
<summary>
Parser MathML matrix column.
</summary>
</member>
<member name="M:Syncfusion.Office.MathMLParser.ParseMathMatrixColumnProperties(System.Xml.XmlReader,Syncfusion.Office.MatrixColumnProperties)">
<summary>
Parser MathML matrix column properties.
</summary>
</member>
<member name="M:Syncfusion.Office.MathMLParser.ParseMathMatrixColumnJustification(System.Xml.XmlReader,Syncfusion.Office.MatrixColumnProperties)">
<summary>
Parser MathML matrix column justification.
</summary>
</member>
<member name="M:Syncfusion.Office.MathMLParser.ParseSpacingRule(System.Xml.XmlReader)">
<summary>
Parser spacing rule of mathematical equation
</summary>
</member>
<member name="M:Syncfusion.Office.MathMLParser.ParseMathMatrixJustification(System.Xml.XmlReader,Syncfusion.Office.OfficeMathMatrix)">
<summary>
Parser MathML matrix justification.
</summary>
</member>
<member name="M:Syncfusion.Office.MathMLParser.ParseMathMatrixRow(System.Xml.XmlReader,Syncfusion.Office.OfficeMathMatrixRow)">
<summary>
Parser MathML matrix row.
</summary>
</member>
<member name="M:Syncfusion.Office.MathMLParser.ParseMathNAry(System.Xml.XmlReader,Syncfusion.Office.OfficeMathNArray)">
<summary>
Parser MathML NAry function.
</summary>
</member>
<member name="M:Syncfusion.Office.MathMLParser.ParseMathNAryProperties(System.Xml.XmlReader,Syncfusion.Office.OfficeMathNArray)">
<summary>
Parse MathML NAry properties.
</summary>
</member>
<member name="M:Syncfusion.Office.MathMLParser.ParseMathRadical(System.Xml.XmlReader,Syncfusion.Office.OfficeMathRadical)">
<summary>
Parse MathML radical function.
</summary>
</member>
<member name="M:Syncfusion.Office.MathMLParser.ParseMathRadicalProperties(System.Xml.XmlReader,Syncfusion.Office.OfficeMathRadical)">
<summary>
Parse MathML radical properties.
</summary>
</member>
<member name="M:Syncfusion.Office.MathMLParser.ParseMathRightScript(System.Xml.XmlReader,Syncfusion.Office.OfficeMathRightScript)">
<summary>
Parse MathML math right script function.
</summary>
</member>
<member name="M:Syncfusion.Office.MathMLParser.ParseMathRightScriptProperties(System.Xml.XmlReader,Syncfusion.Office.OfficeMathRightScript)">
<summary>
Parse MathML math right script properties.
</summary>
</member>
<member name="M:Syncfusion.Office.MathMLParser.ParseMathLeftScript(System.Xml.XmlReader,Syncfusion.Office.OfficeMathLeftScript)">
<summary>
Parse MathML math left script function.
</summary>
</member>
<member name="M:Syncfusion.Office.MathMLParser.ParseMathLeftScriptProperties(System.Xml.XmlReader,Syncfusion.Office.OfficeMathLeftScript)">
<summary>
Parse MathML math left script properties.
</summary>
</member>
<member name="M:Syncfusion.Office.MathMLParser.ParseMathScript(System.Xml.XmlReader,Syncfusion.Office.OfficeMathScript)">
<summary>
Parse MathML math script function.
</summary>
</member>
<member name="M:Syncfusion.Office.MathMLParser.ParseMathScriptProperties(System.Xml.XmlReader,Syncfusion.Office.OfficeMathScript)">
<summary>
Parser MathML script properties.
</summary>
</member>
<member name="M:Syncfusion.Office.MathMLParser.ParseMathEqArray(System.Xml.XmlReader,Syncfusion.Office.OfficeMathEquationArray)">
<summary>
Parser MathML Eqarray function.
</summary>
</member>
<member name="M:Syncfusion.Office.MathMLParser.ParseMathEqArrayProperties(System.Xml.XmlReader,Syncfusion.Office.OfficeMathEquationArray)">
<summary>
Parser MathML EqArray Properties.
</summary>
</member>
<member name="M:Syncfusion.Office.MathMLParser.ParseMathEqArrayJustification(System.Xml.XmlReader,Syncfusion.Office.OfficeMathEquationArray)">
<summary>
Parser MathML EqArray justification.
</summary>
</member>
<member name="M:Syncfusion.Office.MathMLParser.ParseMathGroupChar(System.Xml.XmlReader,Syncfusion.Office.OfficeMathGroupCharacter)">
<summary>
Parser MathML groupchar function.
</summary>
</member>
<member name="M:Syncfusion.Office.MathMLParser.ParseGroupCharProperties(System.Xml.XmlReader,Syncfusion.Office.OfficeMathGroupCharacter)">
<summary>
Parse the MathML groupchar properties.
</summary>
</member>
<member name="M:Syncfusion.Office.MathMLParser.ParseMathBar(System.Xml.XmlReader,Syncfusion.Office.OfficeMathBar)">
<summary>
Parse the MathML bar function.
</summary>
</member>
<member name="M:Syncfusion.Office.MathMLParser.ParseBarProperties(System.Xml.XmlReader,Syncfusion.Office.OfficeMathBar)">
<summary>
Parse the MathML bar properties.
</summary>
</member>
<member name="M:Syncfusion.Office.MathMLParser.ParseMathAccent(System.Xml.XmlReader,Syncfusion.Office.OfficeMathAccent)">
<summary>
Parse the MathML accent function.
</summary>
</member>
<member name="M:Syncfusion.Office.MathMLParser.ParseAccentProperties(System.Xml.XmlReader,Syncfusion.Office.OfficeMathAccent)">
<summary>
Parse the MathML accent properties.
</summary>
</member>
<member name="M:Syncfusion.Office.MathMLParser.ParseMathControlProperties(System.Xml.XmlReader,Syncfusion.Office.OfficeMathFunctionBase,Syncfusion.Office.IOfficeRunFormat)">
<summary>
Parse the control properties of MathML.
</summary>
</member>
<member name="M:Syncfusion.Office.MathMLParser.ParseMathRunFormat(System.Xml.XmlReader,Syncfusion.Office.OfficeMathFormat)">
<summary>
Parse the MathML run format.
</summary>
</member>
<member name="M:Syncfusion.Office.MathMLParser.ParseMathRunFormatScript(System.Xml.XmlReader,Syncfusion.Office.OfficeMathFormat)">
<summary>
Parser MathML run format script.
</summary>
</member>
<member name="M:Syncfusion.Office.MathMLParser.ParseMathRunFormatStyle(System.Xml.XmlReader,Syncfusion.Office.OfficeMathFormat)">
<summary>
Parser MathML run format style.
</summary>
</member>
<member name="M:Syncfusion.Office.MathMLParser.ParseMathParaProperties(System.Xml.XmlReader,Syncfusion.Office.IOfficeMathParagraph)">
<summary>
Parse the mathpara properties.
</summary>
<param name="reader">Represents the reader to read mathml</param>
<param name="mathPara">Represents officemathpara to hold mathml element</param>
</member>
<member name="M:Syncfusion.Office.MathMLParser.ParseMathJustification(System.Xml.XmlReader,Syncfusion.Office.IOfficeMathParagraph)">
<summary>
Parse the mathpara justication type.
</summary>
<param name="reader">Represents the reader to read MathML</param>
<param name="mathPara">Represents officemathpara to hold mathml element</param>
</member>
<member name="M:Syncfusion.Office.MathMLParser.ParseMathBox(System.Xml.XmlReader,Syncfusion.Office.OfficeMathBox)">
<summary>
Parse the mathbox.
</summary>
<param name="reader">Represents the reader to read mathml</param>
<param name="mathBox">Represents officemathbox</param>
</member>
<member name="M:Syncfusion.Office.MathMLParser.ParseMathBoxProperties(System.Xml.XmlReader,Syncfusion.Office.OfficeMathBox)">
<summary>
Parse the mathbox properties.
</summary>
<param name="reader">Represents the reader to read mathml</param>
<param name="mathBox">Represents officemathbox</param>
</member>
<member name="M:Syncfusion.Office.MathMLParser.ParseMathBorderBox(System.Xml.XmlReader,Syncfusion.Office.OfficeMathBorderBox)">
<summary>
Parse the mathborder box.
</summary>
<param name="reader">Represents the reader to read mathml</param>
<param name="mathBorderBox">Represents officemathborderbox</param>
</member>
<member name="M:Syncfusion.Office.MathMLParser.ParseMathBorderBoxProperties(System.Xml.XmlReader,Syncfusion.Office.OfficeMathBorderBox)">
<summary>
Parse the mathborderbox properties.
</summary>
<param name="reader">Represents the reader to read mathml</param>
<param name="mathBorderBox">Represents officemathborderbox</param>
</member>
<member name="M:Syncfusion.Office.MathMLParser.ParseMathDelimiter(System.Xml.XmlReader,Syncfusion.Office.OfficeMathDelimiter)">
<summary>
Parse the mathdelimiter.
</summary>
<param name="reader">Represents the reader to read mathml</param>
<param name="mathDelimiter">Represents officemathdelimiter</param>
</member>
<member name="M:Syncfusion.Office.MathMLParser.ParseMathDelimiterProperties(System.Xml.XmlReader,Syncfusion.Office.OfficeMathDelimiter)">
<summary>
Parse the mathdelimiter properties.
</summary>
<param name="reader">Represents the reader to read mathml</param>
<param name="mathDelimiter">Represents officemathdelimiter</param>
</member>
<member name="M:Syncfusion.Office.MathMLParser.ParseMathFraction(System.Xml.XmlReader,Syncfusion.Office.OfficeMathFraction)">
<summary>
Parse the mathfraction.
</summary>
<param name="reader">Represents the reader to read mathml</param>
<param name="mathFraction">Represents officemathfraction</param>
</member>
<member name="M:Syncfusion.Office.MathMLParser.ParseMathFractionProperties(System.Xml.XmlReader,Syncfusion.Office.OfficeMathFraction)">
<summary>
Parse the mathfraction properties.
</summary>
<param name="reader">Represents the reader to read mathml</param>
<param name="mathFraction">Represents officemathfraction</param>
</member>
<member name="M:Syncfusion.Office.MathMLParser.ParseMathFractionType(System.Xml.XmlReader,Syncfusion.Office.OfficeMathFraction)">
<summary>
Parse the mathfraction type.
</summary>
<param name="reader">Represents the reader to read mathml</param>
<param name="mathFraction">Represents officemathfraction</param>
</member>
<member name="M:Syncfusion.Office.MathMLParser.ParseMathFunc(System.Xml.XmlReader,Syncfusion.Office.OfficeMathFunction)">
<summary>
Parse the mathfunc.
</summary>
<param name="reader">Represents the reader to read mathml</param>
<param name="mathFunc">Represents officemathfunc</param>
</member>
<member name="M:Syncfusion.Office.MathMLParser.ParseMathFuncProperties(System.Xml.XmlReader,Syncfusion.Office.OfficeMathFunction)">
<summary>
Parse the mathfunc properties.
</summary>
<param name="reader">Represents the reader to read mathml</param>
</member>
<member name="M:Syncfusion.Office.MathMLParser.ParseMathDelimiterShape(System.Xml.XmlReader,Syncfusion.Office.OfficeMathDelimiter)">
<summary>
Parse the mathdelimiter shape.
</summary>
<param name="reader">Represents the reader to read mathml</param>
<param name="mathDelimiter">Represents officemathdelimiter</param>
</member>
<member name="M:Syncfusion.Office.MathMLParser.ParseOfficeMathBreak(System.Xml.XmlReader,Syncfusion.Office.OfficeMathBreak)">
<summary>
Parse the mathbreak attributes.
</summary>
<param name="reader">Represents the reader to read mathml</param>
<param name="mathBreak">Represents mathbreak</param>
</member>
<member name="M:Syncfusion.Office.MathMLParser.GetBooleanValue(System.Xml.XmlReader)">
<summary>
Returns the boolean value from the current node
</summary>
<param name="reader">Represents the reader to read mathml</param>
</member>
<member name="M:Syncfusion.Office.MathMLParser.GetNumericValue(System.String)">
<summary>
To validate for the Numeric values alone in font size
</summary>
</member>
<member name="M:Syncfusion.Office.MathMLParser.GetFloatValue(System.String,System.String)">
<summary>
To get the float value
</summary>
</member>
<member name="M:Syncfusion.Office.MathMLParser.GetSpacingValue(System.String,System.String,Syncfusion.Office.SpacingRule)">
<summary>
Returns the spacing value based on spacing rule type.
</summary>
</member>
<member name="M:Syncfusion.Office.MathMLParser.SkipWhitespaces(System.Xml.XmlReader)">
<summary>
Skip whitespaces and moves the reader to the next node.
</summary>
<param name="reader">The xml reader</param>
</member>
<member name="T:Syncfusion.Office.MathConstants">
<summary>
Represents a class to maintain constants for mathematical equation
</summary>
</member>
<member name="T:Syncfusion.Office.MathMLSerializer">
<summary>
Represents the serializer for MathML items.
</summary>
</member>
<member name="M:Syncfusion.Office.MathMLSerializer.SerializeMathPara(System.Xml.XmlWriter,Syncfusion.Office.IOfficeMathParagraph,Syncfusion.Office.DocumentSerializer)">
<summary>
Serializes the MathPara.
</summary>
</member>
<member name="M:Syncfusion.Office.MathMLSerializer.SerilaizeMathParaProperties(Syncfusion.Office.IOfficeMathParagraph)">
<summary>
Serializes the MathParaProperties.
</summary>
</member>
<member name="M:Syncfusion.Office.MathMLSerializer.SerializeMathParaJustification(Syncfusion.Office.IOfficeMathParagraph)">
<summary>
Serializes math para justification
</summary>
<param name="mathPara">Represents the math para</param>
</member>
<member name="M:Syncfusion.Office.MathMLSerializer.SerializeMath(System.Xml.XmlWriter,Syncfusion.Office.IOfficeMath,Syncfusion.Office.DocumentSerializer)">
<summary>
Serializes the Math element.
</summary>
</member>
<member name="M:Syncfusion.Office.MathMLSerializer.SerializeMath(Syncfusion.Office.IOfficeMath)">
<summary>
Serializes the Math element in MathPara.
</summary>
</member>
<member name="M:Syncfusion.Office.MathMLSerializer.SerializeMathFunction(Syncfusion.Office.IOfficeMathFunctionBase)">
<summary>
Serializes the Math function.
</summary>
</member>
<member name="M:Syncfusion.Office.MathMLSerializer.SerializeMathProperties(System.Xml.XmlWriter,Syncfusion.Office.OfficeMathProperties)">
<summary>
Serializes the math properties.
</summary>
</member>
<member name="M:Syncfusion.Office.MathMLSerializer.SerializeNAryLimitLocation(Syncfusion.Office.OfficeMathProperties)">
<summary>
Serializes the NAry limit location of math properties.
</summary>
</member>
<member name="M:Syncfusion.Office.MathMLSerializer.SerializeIntergralLimitLocation(Syncfusion.Office.OfficeMathProperties)">
<summary>
Serializes the Intergral limit location of math properties.
</summary>
</member>
<member name="M:Syncfusion.Office.MathMLSerializer.SerializeDefaultJustification(Syncfusion.Office.OfficeMathProperties)">
<summary>
Serializes the default justification of math properties.
</summary>
</member>
<member name="M:Syncfusion.Office.MathMLSerializer.SerializeBreakOnSubtractOperator(Syncfusion.Office.OfficeMathProperties)">
<summary>
Serializes the break on subtract operator of math properties.
</summary>
</member>
<member name="M:Syncfusion.Office.MathMLSerializer.SerializeBreakOnBinaryOperator(Syncfusion.Office.OfficeMathProperties)">
<summary>
Serializes the break on binary operator of math properties.
</summary>
</member>
<member name="M:Syncfusion.Office.MathMLSerializer.SerializeMathUpperLimit(Syncfusion.Office.OfficeMathLimit)">
<summary>
Serializes the Math upper limit function.
</summary>
</member>
<member name="M:Syncfusion.Office.MathMLSerializer.SerializeMathUpperLimitProperties(Syncfusion.Office.OfficeMathLimit)">
<summary>
Serializes the Math upper limit properties.
</summary>
</member>
<member name="M:Syncfusion.Office.MathMLSerializer.SerializeMathLowerLimit(Syncfusion.Office.OfficeMathLimit)">
<summary>
Serializes the Math lower limit function.
</summary>
</member>
<member name="M:Syncfusion.Office.MathMLSerializer.SerializeMathLowerLimitProperties(Syncfusion.Office.OfficeMathLimit)">
<summary>
Serializes the Math lower limit properties.
</summary>
</member>
<member name="M:Syncfusion.Office.MathMLSerializer.SerializeMathRightScript(Syncfusion.Office.OfficeMathRightScript)">
<summary>
Serializes the Math right script.
</summary>
</member>
<member name="M:Syncfusion.Office.MathMLSerializer.SerializeMathRightScriptProperties(Syncfusion.Office.OfficeMathRightScript)">
<summary>
Serializes the Math right script properties.
</summary>
</member>
<member name="M:Syncfusion.Office.MathMLSerializer.SerializeMathLeftScript(Syncfusion.Office.OfficeMathLeftScript)">
<summary>
Serializes the Math left script function.
</summary>
</member>
<member name="M:Syncfusion.Office.MathMLSerializer.SerializeMathLeftScriptProperties(Syncfusion.Office.OfficeMathLeftScript)">
<summary>
Serializes the Math left script properties.
</summary>
</member>
<member name="M:Syncfusion.Office.MathMLSerializer.SerializeMathSuperScript(Syncfusion.Office.OfficeMathScript)">
<summary>
Serializes the Math SuperScript.
</summary>
</member>
<member name="M:Syncfusion.Office.MathMLSerializer.SerializeMathSuperScriptProperties(Syncfusion.Office.OfficeMathScript)">
<summary>
Serializes the Math SuperScript properties.
</summary>
</member>
<member name="M:Syncfusion.Office.MathMLSerializer.SerializeMathSubScript(Syncfusion.Office.OfficeMathScript)">
<summary>
Serializes the Math SubScript.
</summary>
</member>
<member name="M:Syncfusion.Office.MathMLSerializer.SerializeMathSubScriptProperties(Syncfusion.Office.OfficeMathScript)">
<summary>
Serializes the Math SubScript properties.
</summary>
</member>
<member name="M:Syncfusion.Office.MathMLSerializer.SerializeMathText(Syncfusion.Office.OfficeMathRunElement)">
<summary>
Serializes the Math equation text.
</summary>
</member>
<member name="M:Syncfusion.Office.MathMLSerializer.SerializeMathRunFormat(System.Xml.XmlWriter,Syncfusion.Office.OfficeMathFormat)">
<summary>
Serializes the math run properties.
</summary>
</member>
<member name="M:Syncfusion.Office.MathMLSerializer.SerializeMathRunFormatScript(Syncfusion.Office.OfficeMathFormat)">
<summary>
Serializes the math format script.
</summary>
</member>
<member name="M:Syncfusion.Office.MathMLSerializer.SerializeMathRunFormatStyle(Syncfusion.Office.OfficeMathFormat)">
<summary>
Serializes the math format style.
</summary>
</member>
<member name="M:Syncfusion.Office.MathMLSerializer.SerializeMathAccent(Syncfusion.Office.OfficeMathAccent)">
<summary>
Serializes the Math Accent.
</summary>
<param name="mathAccent">Represents math accent</param>
</member>
<member name="M:Syncfusion.Office.MathMLSerializer.SerializeMathAccentProperties(Syncfusion.Office.OfficeMathAccent)">
<summary>
Serializes the mathaccent properties.
</summary>
<param name="mathAccent">Represents math accent</param>
</member>
<member name="M:Syncfusion.Office.MathMLSerializer.SerializeMathBar(Syncfusion.Office.OfficeMathBar)">
<summary>
Serializes the math bar.
</summary>
<param name="mathBar">Represents math bar</param>
</member>
<member name="M:Syncfusion.Office.MathMLSerializer.SerializeMathBarProperties(Syncfusion.Office.OfficeMathBar)">
<summary>
Serializes the math bar properties.
</summary>
<param name="mathBar">Represents math bar</param>
</member>
<member name="M:Syncfusion.Office.MathMLSerializer.SerializeMathBox(Syncfusion.Office.OfficeMathBox)">
<summary>
Serializes the math box.
</summary>
<param name="mathBox">Represents math box</param>
</member>
<member name="M:Syncfusion.Office.MathMLSerializer.SerializeMathBoxProperties(Syncfusion.Office.OfficeMathBox)">
<summary>
Serializes the mathbox properties.
</summary>
<param name="mathBox">Represents math box</param>
</member>
<member name="M:Syncfusion.Office.MathMLSerializer.SerializeMathBreak(Syncfusion.Office.OfficeMathBreak)">
<summary>
Serializes the mathbreak.
</summary>
<param name="mathBreak">Represents math break</param>
</member>
<member name="M:Syncfusion.Office.MathMLSerializer.SerializeMathBorderBox(Syncfusion.Office.OfficeMathBorderBox)">
<summary>
Serializes the math borderbox.
</summary>
<param name="mathBorderBox">Represents math borderbox</param>
</member>
<member name="M:Syncfusion.Office.MathMLSerializer.SerializeMathBorderBoxProperties(Syncfusion.Office.OfficeMathBorderBox)">
<summary>
Serializes the mathborderbox properties.
</summary>
<param name="mathBorderBox">Represents math borderbox</param>
</member>
<member name="M:Syncfusion.Office.MathMLSerializer.SerializeMathDelimiter(Syncfusion.Office.OfficeMathDelimiter)">
<summary>
Serializes the math delimiter.
</summary>
<param name="mathDelimiter">Represents math delimiter</param>
</member>
<member name="M:Syncfusion.Office.MathMLSerializer.SerializeMathDelimiterProperties(Syncfusion.Office.OfficeMathDelimiter)">
<summary>
Serializes the mathdelimiter properties.
</summary>
<param name="mathDelimiter">Represents math delimiter</param>
</member>
<member name="M:Syncfusion.Office.MathMLSerializer.SerializeMathDelimiterShape(Syncfusion.Office.OfficeMathDelimiter)">
<summary>
Serializes the mathdelimiter shape.
</summary>
</member>
<member name="M:Syncfusion.Office.MathMLSerializer.SerializeMathEqArray(Syncfusion.Office.OfficeMathEquationArray)">
<summary>
Serializes the math equation array.
</summary>
<param name="mathEqArray">Represents math eqArray</param>
</member>
<member name="M:Syncfusion.Office.MathMLSerializer.SerializeMathEqArrayProperties(Syncfusion.Office.OfficeMathEquationArray)">
<summary>
Serializes the math equation array properties.
</summary>
<param name="mathEqArray">Represents math eqArray</param>
</member>
<member name="M:Syncfusion.Office.MathMLSerializer.SerializeSpacingRule(Syncfusion.Office.SpacingRule)">
<summary>
Serializes the math equation spacing rule.
</summary>
</member>
<member name="M:Syncfusion.Office.MathMLSerializer.SerializeMathEqArrayAlignment(Syncfusion.Office.OfficeMathEquationArray)">
<summary>
Serializes the math equation array alignment.
</summary>
<param name="mathEqArray">Represents math eqArray</param>
</member>
<member name="M:Syncfusion.Office.MathMLSerializer.SerializeMathFraction(Syncfusion.Office.OfficeMathFraction)">
<summary>
Serializes the math fraction.
</summary>
<param name="mathFraction">Represents math fraction</param>
</member>
<member name="M:Syncfusion.Office.MathMLSerializer.SerializeMathFractionProperties(Syncfusion.Office.OfficeMathFraction)">
<summary>
Serializes the math fraction properties.
</summary>
<param name="mathFraction">Represents math fraction</param>
</member>
<member name="M:Syncfusion.Office.MathMLSerializer.SerializeMathFractionType(Syncfusion.Office.OfficeMathFraction)">
<summary>
Serializes the math fraction type.
</summary>
</member>
<member name="M:Syncfusion.Office.MathMLSerializer.SerializeMathFunc(Syncfusion.Office.OfficeMathFunction)">
<summary>
Serializes the math func.
</summary>
</member>
<member name="M:Syncfusion.Office.MathMLSerializer.SerializeMathFuncProperties(Syncfusion.Office.OfficeMathFunction)">
<summary>
Serializes the math func properties.
</summary>
</member>
<member name="M:Syncfusion.Office.MathMLSerializer.SerializeMathGroupChar(Syncfusion.Office.OfficeMathGroupCharacter)">
<summary>
Serializes the math groupchar.
</summary>
<param name="mathGroupChar">Represents math groupchar</param>
</member>
<member name="M:Syncfusion.Office.MathMLSerializer.SerializeMathGroupCharProperties(Syncfusion.Office.OfficeMathGroupCharacter)">
<summary>
Serializes the math groupchar properties.
</summary>
<param name="mathGroupChar">Represents math groupchar</param>
</member>
<member name="M:Syncfusion.Office.MathMLSerializer.SerializeMathMatrix(Syncfusion.Office.OfficeMathMatrix)">
<summary>
Serializes the math matrix.
</summary>
<param name="mathMatrix">Represents math matrix</param>
</member>
<member name="M:Syncfusion.Office.MathMLSerializer.SerializeMathMatrixProperties(Syncfusion.Office.OfficeMathMatrix)">
<summary>
Serializes the math matrix properties.
</summary>
<param name="mathMatrix">Represents math matrix</param>
</member>
<member name="M:Syncfusion.Office.MathMLSerializer.SerializeRowSpacing(System.Single,Syncfusion.Office.SpacingRule)">
<summary>
Serialize the row spacing
</summary>
</member>
<member name="M:Syncfusion.Office.MathMLSerializer.SerializeMathMatrixAlign(Syncfusion.Office.OfficeMathMatrix)">
<summary>
Serializes math matrix align
</summary>
<param name="mathMatrix">Represents math matrix</param>
</member>
<member name="M:Syncfusion.Office.MathMLSerializer.SerializeMathMatrixColumns(Syncfusion.Office.OfficeMathMatrix)">
<summary>
Serializes math matrix columns
</summary>
<param name="mathMatrix">Represents math matrix</param>
</member>
<member name="M:Syncfusion.Office.MathMLSerializer.SerializeMathMatrixColumnProperties(Syncfusion.Office.MatrixColumnProperties)">
<summary>
Serializes math matrix column properties
</summary>
<param name="mathMatrixColumnProperties">Represents math matrix column</param>
</member>
<member name="M:Syncfusion.Office.MathMLSerializer.SerializeMathMatrixColumnAlign(Syncfusion.Office.MatrixColumnProperties)">
<summary>
Serializes math matrix column alignment
</summary>
<param name="mathMatrixColumnProperties">Represents math matrix column</param>
</member>
<member name="M:Syncfusion.Office.MathMLSerializer.SerializeMathMatrixRow(Syncfusion.Office.OfficeMathMatrixRow)">
<summary>
Serializes a math matrix row
</summary>
<param name="mathMatrixRow"></param>
</member>
<member name="M:Syncfusion.Office.MathMLSerializer.SerializeMathNAry(Syncfusion.Office.OfficeMathNArray)">
<summary>
Serializes math nary
</summary>
<param name="mathNAry">Represents math nary</param>
</member>
<member name="M:Syncfusion.Office.MathMLSerializer.SerializeMathNAryProperties(Syncfusion.Office.OfficeMathNArray)">
<summary>
Serializes math nary properties
</summary>
<param name="mathNAry">Represents math nary</param>
</member>
<member name="M:Syncfusion.Office.MathMLSerializer.SerializeMathRadical(Syncfusion.Office.OfficeMathRadical)">
<summary>
Serializes math radical
</summary>
<param name="mathRadical"></param>
</member>
<member name="M:Syncfusion.Office.MathMLSerializer.SerializeMathRadicalProperties(Syncfusion.Office.OfficeMathRadical)">
<summary>
Serializes the math radical properties
</summary>
<param name="mathRadical">Represents the math radical</param>
</member>
<member name="M:Syncfusion.Office.MathMLSerializer.SerializeMathPhantom(Syncfusion.Office.OfficeMathPhantom)">
<summary>
Serializes the math phantom
</summary>
<param name="mathPhantom"></param>
</member>
<member name="M:Syncfusion.Office.MathMLSerializer.SerializeMathPhantomProperties(Syncfusion.Office.OfficeMathPhantom)">
<summary>
Serializes math phantom properties
</summary>
<param name="mathPhantom">Represents math phantom</param>
</member>
<member name="M:Syncfusion.Office.MathMLSerializer.SerializeBoolProperty(System.String,System.Boolean)">
<summary>
Serializes the bool property
</summary>
<param name="tag">Tag name</param>
<param name="value">if set to <c>true</c> [value].</param>
</member>
<member name="M:Syncfusion.Office.MathMLSerializer.ToString(System.Single)">
<summary>
Convert the float value to string.
</summary>
<param name="value">float value</param>
<returns></returns>
</member>
<member name="F:Syncfusion.Office.OfficeMathNArray.m_equation">
<summary>
Specifies an <see cref="T:Syncfusion.Office.IOfficeMath"/> object that represents the base of the specified equation object.
</summary>
</member>
<member name="F:Syncfusion.Office.OfficeMathNArray.m_subscript">
<summary>
Specifies an <see cref="T:Syncfusion.Office.IOfficeMath"/> object that represents the lower limit of an n-ary operator.
</summary>
</member>
<member name="F:Syncfusion.Office.OfficeMathNArray.m_superscript">
<summary>
Specifies an <see cref="T:Syncfusion.Office.IOfficeMath"/> object that represents the upper limit of an n-ary operator.
</summary>
</member>
<member name="F:Syncfusion.Office.OfficeMathNArray.m_controlProperties">
<summary>
Represents the character format
</summary>
</member>
<member name="M:Syncfusion.Office.OfficeMathNArray.#ctor(Syncfusion.Office.IOfficeMathEntity)">
<summary>
Initializes a new instance of the <see cref="T:Syncfusion.Office.OfficeMathNArray"/> class.
</summary>
</member>
<member name="M:Syncfusion.Office.OfficeMathNArray.Close">
<summary>
Closes this instance.
</summary>
</member>
<member name="M:Syncfusion.Office.OfficeMathNArray.GetPropertyValue(System.Int32)">
<summary>
Gets the property value.
</summary>
</member>
<member name="M:Syncfusion.Office.OfficeMathNArray.SetPropertyValue(System.Int32,System.Object)">
<summary>
Sets the property value.
</summary>
</member>
<member name="M:Syncfusion.Office.OfficeMathNArray.GetDefValue(System.Int32)">
<summary>
Return default value of the respective key.
</summary>
</member>
<member name="M:Syncfusion.Office.OfficeMathNArray.HasValue(System.Int32)">
<summary>
Determines whether the specified property key has value.
</summary>
<param name="propertyKey">The property key.</param>
<returns>
if the specified property key has value, set to <c>true</c>.
</returns>
</member>
<member name="M:Syncfusion.Office.OfficeMathNArray.HasKey(System.Int32)">
<summary>
Returns the value indicating whether the key exists in the properties collection.
</summary>
<param name="key">The <b>integer</b> that specifies the key.</param>
<returns>
<b>True</b> if the specified key is present, otherwise <b>false</b>.
</returns>
</member>
<member name="M:Syncfusion.Office.OfficeMathNArray.Clone(Syncfusion.Office.IOfficeMathEntity)">
<summary>
Clones the item
</summary>
</member>
<member name="P:Syncfusion.Office.OfficeMathNArray.NArrayCharacter">
<summary>
Gets or sets a short that represents a character used as the n-ary operator. Default value is <b>integral</b>.
</summary>
</member>
<member name="P:Syncfusion.Office.OfficeMathNArray.HasGrow">
<summary>
Gets or sets a boolean that represents whether n-ary operators grow to the full height of the arguments that they contain.Default value is <b>false</b>.
</summary>
</member>
<member name="P:Syncfusion.Office.OfficeMathNArray.HideLowerLimit">
<summary>
Gets or sets a boolean that represents whether to hide the lower limit of an n-ary operator. Default value is <b>false</b>.
</summary>
</member>
<member name="P:Syncfusion.Office.OfficeMathNArray.HideUpperLimit">
<summary>
Gets or sets a boolean that represents whether to hide the upper limit of an n-ary operator. Default value is <b>false</b>.
</summary>
</member>
<member name="P:Syncfusion.Office.OfficeMathNArray.SubSuperscriptLimit">
<summary>
Gets or sets a boolean that represents the positioning of n-ary limits in the subscript-superscript or upper limit-lower limit position. Default value is <b>true</b> for integral and <b>false</b> for all other <see cref="T:Syncfusion.Office.IOfficeMathNArray"/> object.
</summary>
</member>
<member name="P:Syncfusion.Office.OfficeMathNArray.Equation">
<summary>
Gets an <see cref="T:Syncfusion.Office.IOfficeMath"/> object that represents the base of the specified equation object.
</summary>
</member>
<member name="P:Syncfusion.Office.OfficeMathNArray.Subscript">
<summary>
Gets an <see cref="T:Syncfusion.Office.IOfficeMath"/> object that represents the lower limit of an n-ary operator.
</summary>
</member>
<member name="P:Syncfusion.Office.OfficeMathNArray.Superscript">
<summary>
Gets an <see cref="T:Syncfusion.Office.IOfficeMath"/> object that represents the upper limit of an n-ary operator.
</summary>
</member>
<member name="P:Syncfusion.Office.OfficeMathNArray.PropertiesHash">
<summary>
Gets the propertieshash value.
</summary>
</member>
<member name="P:Syncfusion.Office.OfficeMathNArray.Item(System.Int32)">
<summary>
Gets or sets the value for the property with specified key.
</summary>
</member>
<member name="P:Syncfusion.Office.OfficeMathNArray.ControlProperties">
<summary>
Gets or sets the <see cref="T:Syncfusion.Office.IOfficeRunFormat"/> object that represent the control property of MathML function.
</summary>
</member>
<member name="T:Syncfusion.Office.OfficeMathParagraph">
<summary>
Represents the OfficeMathPara that can be used to format a top level MathML element.
</summary>
</member>
<member name="F:Syncfusion.Office.OfficeMathParagraph.m_maths">
<summary>
Specifies a <see cref="T:Syncfusion.Office.OfficeMaths"/>.
</summary>
</member>
<member name="F:Syncfusion.Office.OfficeMathParagraph.m_propertiesHash">
<summary>
Member to hold the collection of properties values and its keys.
</summary>
</member>
<member name="M:Syncfusion.Office.OfficeMathParagraph.Clone">
<summary>
Clones the item
</summary>
</member>
<member name="M:Syncfusion.Office.OfficeMathParagraph.SetOwner(System.Object)">
<summary>
Sets the owner.
</summary>
</member>
<member name="M:Syncfusion.Office.OfficeMathParagraph.GetPropertyValue(System.Int32)">
<summary>
Gets the property value.
</summary>
</member>
<member name="M:Syncfusion.Office.OfficeMathParagraph.SetPropertyValue(System.Int32,System.Object)">
<summary>
Sets the property value.
</summary>
</member>
<member name="M:Syncfusion.Office.OfficeMathParagraph.HasValue(System.Int32)">
<summary>
Determines whether the specified property key has value.
</summary>
<param name="propertyKey">The property key.</param>
<returns>
if the specified property key has value, set to <c>true</c>.
</returns>
</member>
<member name="M:Syncfusion.Office.OfficeMathParagraph.HasKey(System.Int32)">
<summary>
Returns the value indicating whether the key exists in the properties collection.
</summary>
<param name="key">The <b>integer</b> that specifies the key.</param>
<returns>
<b>True</b> if the specified key is present, otherwise <b>false</b>.
</returns>
</member>
<member name="M:Syncfusion.Office.OfficeMathParagraph.GetDefValue(System.Int32)">
<summary>
Return default value of the respective key.
</summary>
</member>
<member name="P:Syncfusion.Office.OfficeMathParagraph.Justification">
<summary>
Gets or sets <see cref="T:Syncfusion.Office.MathJustification"/>.
</summary>
</member>
<member name="P:Syncfusion.Office.OfficeMathParagraph.Maths">
<summary>
Gets a collection of equations. Use the <see cref="T:Syncfusion.Office.OfficeMaths"/> object to access individual members of the collection.
</summary>
</member>
<member name="P:Syncfusion.Office.OfficeMathParagraph.Owner">
<summary>
Gets the Owner.
</summary>
</member>
<member name="P:Syncfusion.Office.OfficeMathParagraph.PropertiesHash">
<summary>
Gets the PropertiesHash value.
</summary>
</member>
<member name="P:Syncfusion.Office.OfficeMathParagraph.Item(System.Int32)">
<summary>
Gets or sets the value for the property with specified key.
</summary>
</member>
<member name="P:Syncfusion.Office.OfficeMathParagraph.IsDefault">
<summary>
Gets or sets whether format is default.
</summary>
</member>
<member name="P:Syncfusion.Office.OfficeMathParagraph.DefaultMathCharacterFormat">
<summary>
Represents the default character format for functions in mathematical equation
</summary>
</member>
<member name="T:Syncfusion.Office.OfficeMathRunElement">
<summary>
Represents <see cref="T:Syncfusion.Office.OfficeMathRunElement"/> object that provides the base implementation for all <see cref="T:Syncfusion.Office.IOfficeMathParagraph"/> items.
</summary>
</member>
<member name="F:Syncfusion.Office.OfficeMathRunElement.m_mathFormat">
<summary>
Specifies the <see cref="T:Syncfusion.Office.IOfficeMathFormat"/> object that can be used for formatting the character of the mathematical text.
</summary>
</member>
<member name="M:Syncfusion.Office.OfficeMathRunElement.#ctor(Syncfusion.Office.IOfficeMathEntity)">
<summary>
Initializes a new instance of the <see cref="T:Syncfusion.Office.IOfficeMathRunElement"/> class.
</summary>
</member>
<member name="M:Syncfusion.Office.OfficeMathRunElement.Clone(Syncfusion.Office.IOfficeMathEntity)">
<summary>
Clones the item
</summary>
</member>
<member name="P:Syncfusion.Office.OfficeMathRunElement.Item">
<summary>
Gets or sets the <see cref="T:Syncfusion.Office.IOfficeRun"/> object that represents a mathematical text.
</summary>
</member>
<member name="P:Syncfusion.Office.OfficeMathRunElement.MathFormat">
<summary>
Gets the <see cref="T:Syncfusion.Office.IOfficeMathFormat"/> object that can be used for formatting the character of the mathematical text.
</summary>
</member>
<member name="T:Syncfusion.Office.OfficeMathPhantom">
<summary>
Represents a phantom object, which has two primary uses: (1) adding the spacing of the phantom base without displaying that base or (2) suppressing part of the glyph from spacing considerations
</summary>
</member>
<member name="F:Syncfusion.Office.OfficeMathPhantom.ShowKey">
<summary>
Keys.
</summary>
</member>
<member name="F:Syncfusion.Office.OfficeMathPhantom.m_equation">
<summary>
Specifies a <see cref="T:Syncfusion.Office.OfficeMath"/> object that represents the base of the specified equation object.
</summary>
</member>
<member name="F:Syncfusion.Office.OfficeMathPhantom.m_propertiesHash">
<summary>
Holds the collection of properties values and its keys.
</summary>
</member>
<member name="F:Syncfusion.Office.OfficeMathPhantom.m_controlProperties">
<summary>
Represents the character format
</summary>
</member>
<member name="M:Syncfusion.Office.OfficeMathPhantom.#ctor(Syncfusion.Office.IOfficeMathEntity)">
<summary>
Initializes a new instance of the <see cref="T:Syncfusion.Office.OfficeMathPhantom"/> class.
</summary>
</member>
<member name="M:Syncfusion.Office.OfficeMathPhantom.GetPropertyValue(System.Int32)">
<summary>
Gets the property value.
</summary>
<param name="propKey">The prop key.</param>
<returns></returns>
</member>
<member name="M:Syncfusion.Office.OfficeMathPhantom.SetPropertyValue(System.Int32,System.Object)">
<summary>
Sets the property value.
</summary>
<param name="propKey">The property key.</param>
<param name="value">The value.</param>
</member>
<member name="M:Syncfusion.Office.OfficeMathPhantom.GetDefValue(System.Int32)">
<summary>
Sets the default properties.
</summary>
</member>
<member name="M:Syncfusion.Office.OfficeMathPhantom.HasValue(System.Int32)">
<summary>
Determines whether the specified property key has value.
</summary>
<param name="propertyKey">The property key.</param>
<returns>
if the specified property key has value, set to <c>true</c>.
</returns>
</member>
<member name="M:Syncfusion.Office.OfficeMathPhantom.HasKey(System.Int32)">
<summary>
Returns the value indicating whether the key exists in the properties collection.
</summary>
<param name="key">The <b>integer</b> that specifies the key.</param>
<returns>
<b>True</b> if the specified key is present, otherwise <b>false</b>.
</returns>
</member>
<member name="M:Syncfusion.Office.OfficeMathPhantom.Clone(Syncfusion.Office.IOfficeMathEntity)">
<summary>
Clones the item
</summary>
</member>
<member name="P:Syncfusion.Office.OfficeMathPhantom.Show">
<summary>
Gets or sets a boolean that represents whether the contents of a phantom object are visible.
</summary>
<value><b>True</b> phantom base is shown; otherwise, <b>false</b>phantom base is hidden.</value>
</member>
<member name="P:Syncfusion.Office.OfficeMathPhantom.Smash">
<summary>
Gets or sets a boolean that represents that the contents of the phantom are visible but that the height is not taken into account in the spacing of the layout.
</summary>
<value><b>True</b> contents of the phantom are visible but that the height is not taken into account in the spacing of the layout; otherwise, <b>false</b></value>
</member>
<member name="P:Syncfusion.Office.OfficeMathPhantom.Transparent">
<summary>
Gets or sets a boolean that represents whether a phantom object is transparent.
</summary>
<value><b>True</b> phantom object is transparent; otherwise, <b>false</b>phantom object is not transparent .</value>
</member>
<member name="P:Syncfusion.Office.OfficeMathPhantom.ZeroAscent">
<summary>
Gets or sets a boolean that represents whether the ascent of the phantom contents is ignored in the spacing of the layout.
</summary>
<value><b>True</b> ascent of the contents of the phantom is not taken into account during layout; otherwise, <b>false</b>phantom does have ascent.</value>
</member>
<member name="P:Syncfusion.Office.OfficeMathPhantom.ZeroDescent">
<summary>
Gets or sets a boolean that represents whether the descent of the phantom contents is ignored in the spacing of the layout.
</summary>
<value><b>True</b> descent of the contents of the phantom is taken into account during layout.; otherwise, <b>false</b>phantom does have descent.</value>
</member>
<member name="P:Syncfusion.Office.OfficeMathPhantom.ZeroWidth">
<summary>
Gets or sets a boolean that represents whether the width of a phantom object is ignored in the spacing of the layout.
</summary>
<value><b>True</b>width of the contents of the phantom is not taken into account during layout.; otherwise, <b>false</b>phantom does have width.</value>
</member>
<member name="P:Syncfusion.Office.OfficeMathPhantom.Equation">
<summary>
Gets a <see cref="T:Syncfusion.Office.OfficeMath"/> object that represents the base of the specified equation object.
</summary>
</member>
<member name="P:Syncfusion.Office.OfficeMathPhantom.IsDefault">
<summary>
Gets or sets whether format is default.
</summary>
</member>
<member name="P:Syncfusion.Office.OfficeMathPhantom.ControlProperties">
<summary>
Gets or sets the <see cref="T:Syncfusion.Office.IOfficeRunFormat"/> object that represent the control property of MathML function.
</summary>
</member>
<member name="P:Syncfusion.Office.OfficeMathPhantom.PropertiesHash">
<summary>
Gets the PropertiesHash value.
</summary>
</member>
<member name="P:Syncfusion.Office.OfficeMathPhantom.Item(System.Int32)">
<summary>
Gets or sets the value for the property with specified key.
</summary>
</member>
<member name="T:Syncfusion.Office.OfficeMathProperties">
<summary>
Represents the MathML properties.
</summary>
</member>
<member name="F:Syncfusion.Office.OfficeMathProperties.m_propertiesHash">
<summary>
Member to hold the collection of properties values and its keys.
</summary>
</member>
<member name="M:Syncfusion.Office.OfficeMathProperties.GetPropertyValue(System.Int32)">
<summary>
Gets the property value.
</summary>
</member>
<member name="M:Syncfusion.Office.OfficeMathProperties.SetPropertyValue(System.Int32,System.Object)">
<summary>
Sets the property Value.
</summary>
</member>
<member name="M:Syncfusion.Office.OfficeMathProperties.GetDefValue(System.Int32)">
<summary>
Return default value of the respective key.
</summary>
</member>
<member name="M:Syncfusion.Office.OfficeMathProperties.HasValue(System.Int32)">
<summary>
Determines whether the specified property key has value.
</summary>
<param name="propertyKey">The property key.</param>
<returns>
if the specified property key has value, set to <c>true</c>.
</returns>
</member>
<member name="M:Syncfusion.Office.OfficeMathProperties.HasKey(System.Int32)">
<summary>
Returns the value indicating whether the key exists in the properties collection.
</summary>
<param name="key">The <b>integer</b> that specifies the key.</param>
<returns>
<b>True</b> if the specified key is present, otherwise <b>false</b>.
</returns>
</member>
<member name="P:Syncfusion.Office.OfficeMathProperties.BreakOnBinaryOperators">
<summary>
Gets or set a value which indicates how binary operators are treated when they coincide with a line break.
</summary>
</member>
<member name="P:Syncfusion.Office.OfficeMathProperties.BreakOnBinarySubtraction">
<summary>
Gets or set a value which indicates how the subtraction operator is treated when it coincides with a line break, when brkBin is set to repeat.
</summary>
</member>
<member name="P:Syncfusion.Office.OfficeMathProperties.DefaultJustification">
<summary>
Gets or set a value which indicates the default justification of display math, at the document level.
</summary>
</member>
<member name="P:Syncfusion.Office.OfficeMathProperties.DisplayMathDefaults">
<summary>
Gets or set a value which indicates the document-level property to overwrite paragraph settings for mathematical text.
</summary>
</member>
<member name="P:Syncfusion.Office.OfficeMathProperties.InterEquationSpacing">
<summary>
Gets or set a value which indicates spacing between equations, expressions, or other instances of mathematical text within a display math paragraph, in twips.
</summary>
</member>
<member name="P:Syncfusion.Office.OfficeMathProperties.IntegralLimitLocations">
<summary>
Gets or set a value which indicates the document setting for the default placement of integral limits.
</summary>
</member>
<member name="P:Syncfusion.Office.OfficeMathProperties.IntraEquationSpacing">
<summary>
Gets or set a value which indicates the spacing between adjacent display math paragraphs, in twips.
</summary>
</member>
<!-- Badly formed XML comment ignored for member "P:Syncfusion.Office.OfficeMathProperties.LeftMargin" -->
<member name="P:Syncfusion.Office.OfficeMathProperties.MathFont">
<summary>
Gets or set a value which indicates the default math font to be used in the document.
</summary>
</member>
<member name="P:Syncfusion.Office.OfficeMathProperties.NAryLimitLocation">
<summary>
Gets or set a value which indicates the document setting for the default placement of n-ary limits other than integrals.
</summary>
</member>
<member name="P:Syncfusion.Office.OfficeMathProperties.PostParagraphSpacing">
<summary>
Gets or set a value which indicates the spacing after a math paragraph, in twips.
</summary>
</member>
<member name="P:Syncfusion.Office.OfficeMathProperties.PreParagraphSpacing">
<summary>
Gets or set a value which indicates the spacing before a math paragraph, in twips.
</summary>
</member>
<member name="P:Syncfusion.Office.OfficeMathProperties.RightMargin">
<summary>
Gets or set a value which indicates the right margin for math.
</summary>
</member>
<member name="P:Syncfusion.Office.OfficeMathProperties.SmallFraction">
<summary>
Gets or set a value which indicates a reduced fraction size display math, such that the numerator and denominator are written in script size instead of at the size of regular text.
</summary>
</member>
<!-- Badly formed XML comment ignored for member "P:Syncfusion.Office.OfficeMathProperties.WrapIndent" -->
<member name="P:Syncfusion.Office.OfficeMathProperties.WrapRight">
<summary>
Gets or set a value which indicates the right justification of the wrapped line of an instance of mathematical text.
</summary>
</member>
<member name="P:Syncfusion.Office.OfficeMathProperties.IsDefault">
<summary>
Gets or sets whether format is default.
</summary>
</member>
<member name="P:Syncfusion.Office.OfficeMathProperties.PropertiesHash">
<summary>
Gets the PropertiesHash value.
</summary>
</member>
<member name="P:Syncfusion.Office.OfficeMathProperties.Item(System.Int32)">
<summary>
Gets or sets the value for the property with specified key.
</summary>
</member>
<member name="T:Syncfusion.Office.OfficeMathRadical">
<summary>
Represents class for radical function
</summary>
</member>
<member name="F:Syncfusion.Office.OfficeMathRadical.m_propertiesHash">
<summary>
Member to hold the collection of properties values and its keys.
</summary>
</member>
<member name="F:Syncfusion.Office.OfficeMathRadical.m_degree">
<summary>
Member that represents the degree for a radical.
</summary>
</member>
<member name="F:Syncfusion.Office.OfficeMathRadical.m_equation">
<summary>
Member that represents the math object.
</summary>
</member>
<member name="F:Syncfusion.Office.OfficeMathRadical.m_controlProperties">
<summary>
Represents the character format
</summary>
</member>
<member name="M:Syncfusion.Office.OfficeMathRadical.#ctor(Syncfusion.Office.IOfficeMathEntity)">
<summary>
Initializes a new instance of the <see cref="T:Syncfusion.Office.IOfficeMathRadical"/> class.
</summary>
</member>
<member name="M:Syncfusion.Office.OfficeMathRadical.GetPropertyValue(System.Int32)">
<summary>
Gets the property value.
</summary>
</member>
<member name="M:Syncfusion.Office.OfficeMathRadical.SetPropertyValue(System.Int32,System.Object)">
<summary>
Sets the property value.
</summary>
</member>
<member name="M:Syncfusion.Office.OfficeMathRadical.GetDefValue(System.Int32)">
<summary>
Return default value of the respective key.
</summary>
</member>
<member name="M:Syncfusion.Office.OfficeMathRadical.HasValue(System.Int32)">
<summary>
Determines whether the specified property key has value.
</summary>
<param name="propertyKey">The property key.</param>
<returns>
if the specified property key has value, set to <c>true</c>.
</returns>
</member>
<member name="M:Syncfusion.Office.OfficeMathRadical.HasKey(System.Int32)">
<summary>
Returns the value indicating whether the key exists in the properties collection.
</summary>
<param name="key">The <b>integer</b> that specifies the key.</param>
<returns>
<b>True</b> if the specified key is present, otherwise <b>false</b>.
</returns>
</member>
<member name="M:Syncfusion.Office.OfficeMathRadical.Clone(Syncfusion.Office.IOfficeMathEntity)">
<summary>
Clones the item
</summary>
</member>
<member name="M:Syncfusion.Office.OfficeMathRadical.Close">
<summary>
Closes this Instance.
</summary>
</member>
<member name="P:Syncfusion.Office.OfficeMathRadical.Degree">
<summary>
Gets the <see cref="T:Syncfusion.Office.IOfficeMath"/> object that represents the degree for a radical. Read-only.
</summary>
</member>
<member name="P:Syncfusion.Office.OfficeMathRadical.Equation">
<summary>
Gets an <see cref="T:Syncfusion.Office.IOfficeMath"/> object that represents the base of the specified equation object.
</summary>
</member>
<member name="P:Syncfusion.Office.OfficeMathRadical.HideDegree">
<summary>
Gets or sets a value that represents whether to hide the degree for a radical.
</summary>
<value><b>True</b> if to hide the degree for a radical; otherwise, <b>false</b>.</value>
</member>
<member name="P:Syncfusion.Office.OfficeMathRadical.PropertiesHash">
<summary>
Gets the PropertiesHash value.
</summary>
</member>
<member name="P:Syncfusion.Office.OfficeMathRadical.Item(System.Int32)">
<summary>
Gets or sets the value for the property with specified key.
</summary>
</member>
<member name="P:Syncfusion.Office.OfficeMathRadical.ControlProperties">
<summary>
Gets or sets the <see cref="T:Syncfusion.Office.IOfficeRunFormat"/> object that represent the control property of MathML function.
</summary>
</member>
<member name="T:Syncfusion.Office.OfficeMaths">
<summary>
Represents a collection of Math.
</summary>
</member>
<member name="M:Syncfusion.Office.OfficeMaths.#ctor(Syncfusion.Office.IOfficeMathEntity)">
<summary>
Initializes a new instance of the <see cref="T:Syncfusion.Office.OfficeMaths"/> class.
the owner <see cref="T:Syncfusion.Office.OfficeMathParagraph"/> instance.
</summary>
<param name="owner">The owner.</param>
</member>
<member name="M:Syncfusion.Office.OfficeMaths.Add(System.Int32)">
<summary>
Adds <see cref="T:Syncfusion.Office.IOfficeMath"/> instance to the collection at specified index.
</summary>
<param name="index">The Index, where to add the <see cref="T:Syncfusion.Office.IOfficeMath"/> instance.</param>
<returns>Returns the newly added <see cref="T:Syncfusion.Office.IOfficeMath"/>. </returns>
<exception cref="T:System.NotSupportedException">
<para> When adding arguments in <see cref="T:Syncfusion.Office.IOfficeMathMatrixRow"/> or <see cref="T:Syncfusion.Office.IOfficeMathMatrixColumn"/>, it throws exception.</para>
<para> Add new <see cref="T:Syncfusion.Office.IOfficeMathMatrixRow"/> and <see cref="T:Syncfusion.Office.IOfficeMathMatrixColumn"/> to add new argument in <see cref="T:Syncfusion.Office.IOfficeMathMatrix"/></para>
</exception>
</member>
<member name="M:Syncfusion.Office.OfficeMaths.Add">
<summary>
Adds <see cref="T:Syncfusion.Office.IOfficeMath"/> instance to the collection.
</summary>
<returns>Returns the newly added <see cref="T:Syncfusion.Office.IOfficeMath"/>. </returns>
<exception cref="T:System.NotSupportedException">
<para> When adding arguments in <see cref="T:Syncfusion.Office.IOfficeMathMatrixRow"/> or <see cref="T:Syncfusion.Office.IOfficeMathMatrixColumn"/>, it throws exception.</para>
<para> Add new <see cref="T:Syncfusion.Office.IOfficeMathMatrixRow"/> and <see cref="T:Syncfusion.Office.IOfficeMathMatrixColumn"/> to add new argument in <see cref="T:Syncfusion.Office.IOfficeMathMatrix"/></para>
</exception>
</member>
<member name="M:Syncfusion.Office.OfficeMaths.Add(Syncfusion.Office.OfficeMath)">
<summary>
Adds an item
</summary>
<exception cref="T:System.NotSupportedException">
<para>When adding arguments in <see cref="T:Syncfusion.Office.IOfficeMathMatrixRow"/> or <see cref="T:Syncfusion.Office.IOfficeMathMatrixColumn"/>, it throws exception.</para>
<para>Add new <see cref="T:Syncfusion.Office.IOfficeMathMatrixRow"/> or <see cref="T:Syncfusion.Office.IOfficeMathMatrixColumn"/> to add new argument in <see cref="T:Syncfusion.Office.IOfficeMathMatrix"/></para>
</exception>
</member>
<member name="M:Syncfusion.Office.OfficeMaths.OnBeforeInsert">
<summary>
Check the condition before insert a math
</summary>
</member>
<member name="M:Syncfusion.Office.OfficeMaths.CloneItemsTo(Syncfusion.Office.OfficeMaths)">
<summary>
Clones the item in collection
</summary>
</member>
<member name="M:Syncfusion.Office.OfficeMaths.Close">
<summary>
Clears the object.
</summary>
</member>
<member name="P:Syncfusion.Office.OfficeMaths.Item(System.Int32)">
<summary>
Represents the specified item in the collection.
</summary>
</member>
<member name="T:Syncfusion.Office.IOfficeMathMatrixColumn">
<summary>
Represents a matrix column.
</summary>
</member>
<member name="P:Syncfusion.Office.IOfficeMathMatrixColumn.ColumnIndex">
<summary>
Gets an integer that represents the ordinal position of a column within the collection of columns in a matrix.
</summary>
</member>
<member name="P:Syncfusion.Office.IOfficeMathMatrixColumn.Arguments">
<summary>
Gets a <see cref="T:Syncfusion.Office.OfficeMaths"/> object that represents the arguments in a matrix column.
</summary>
</member>
<member name="P:Syncfusion.Office.IOfficeMathMatrixColumn.HorizontalAlignment">
<summary>
Gets or sets a MathHorizontalAlignment constant that represents the horizontal alignment for arguments in a matrix column.
</summary>
</member>
<member name="T:Syncfusion.Office.IOfficeMathMatrixRow">
<summary>
Represents a interface matrix row.
</summary>
</member>
<member name="P:Syncfusion.Office.IOfficeMathMatrixRow.RowIndex">
<summary>
Gets an integer that represents the ordinal position of a row within the collection of rows in a matrix.
</summary>
</member>
<member name="P:Syncfusion.Office.IOfficeMathMatrixRow.Arguments">
<summary>
Gets a <see cref="T:Syncfusion.Office.OfficeMaths"/> object that represents the arguments in a matrix row.
</summary>
</member>
<member name="T:Syncfusion.Office.OfficeMathAccent">
<summary>
Returns an <see cref="T:Syncfusion.Office.IOfficeMathAccent"/> object that represents a base character with a combining accent mark. Read-only.
</summary>
</member>
<member name="F:Syncfusion.Office.OfficeMathAccent.m_equation">
<summary>
Specifies a <see cref="T:Syncfusion.Office.IOfficeMath"/> object that represents the base of the specified equation object.
</summary>
</member>
<member name="M:Syncfusion.Office.OfficeMathAccent.#ctor(Syncfusion.Office.IOfficeMathEntity)">
<summary>
Initializes a new instance of the <see cref="T:Syncfusion.Office.OfficeMathAccent"/> class.
</summary>
</member>
<member name="M:Syncfusion.Office.OfficeMathAccent.Close">
<summary>
Closes this instance.
</summary>
</member>
<member name="M:Syncfusion.Office.OfficeMathAccent.Clone(Syncfusion.Office.IOfficeMathEntity)">
<summary>
Clones the item
</summary>
<returns></returns>
</member>
<member name="M:Syncfusion.Office.OfficeMathAccent.GetPropertyValue(System.Int32)">
<summary>
Gets the property value.
</summary>
</member>
<member name="M:Syncfusion.Office.OfficeMathAccent.SetPropertyValue(System.Int32,System.Object)">
<summary>
Sets the property value.
</summary>
</member>
<member name="M:Syncfusion.Office.OfficeMathAccent.GetDefValue(System.Int32)">
<summary>
Return default value of the respective key.
</summary>
</member>
<member name="M:Syncfusion.Office.OfficeMathAccent.HasValue(System.Int32)">
<summary>
Determines whether the specified property key has value.
</summary>
<param name="propertyKey">The property key.</param>
<returns>
if the specified property key has value, set to <c>true</c>.
</returns>
</member>
<member name="M:Syncfusion.Office.OfficeMathAccent.HasKey(System.Int32)">
<summary>
Returns the value indicating whether the key exists in the properties collection.
</summary>
<param name="key">The <b>integer</b> that specifies the key.</param>
<returns>
<b>True</b> if the specified key is present, otherwise <b>false</b>.
</returns>
</member>
<member name="P:Syncfusion.Office.OfficeMathAccent.AccentCharacter">
<summary>
Gets or sets a string that represents the accent character for the <see cref="T:Syncfusion.Office.IOfficeMathAccent"/> object. Read/write.
</summary>
</member>
<member name="P:Syncfusion.Office.OfficeMathAccent.Equation">
<summary>
Gets a <see cref="T:Syncfusion.Office.IOfficeMath"/> object that represents the base of the specified equation object. Read-only.
</summary>
</member>
<member name="P:Syncfusion.Office.OfficeMathAccent.PropertiesHash">
<summary>
Gets the propertieshash value.
</summary>
</member>
<member name="P:Syncfusion.Office.OfficeMathAccent.Item(System.Int32)">
<summary>
Gets or sets the value for the property with specified key.
</summary>
</member>
<member name="P:Syncfusion.Office.OfficeMathAccent.ControlProperties">
<summary>
Gets or sets the <see cref="T:Syncfusion.Office.IOfficeRunFormat"/> object that represent the control property of MathML function.
</summary>
</member>
<member name="T:Syncfusion.Office.OfficeMathBreak">
<summary>
Represents a class to maintain break between the equation.
</summary>
</member>
<member name="F:Syncfusion.Office.OfficeMathBreak.m_propertiesHash">
<summary>
Member to hold the collection of properties values and its keys.
</summary>
</member>
<member name="M:Syncfusion.Office.OfficeMathBreak.#ctor(Syncfusion.Office.IOfficeMathEntity)">
<summary>
Initializes a new instance of the <see cref="T:Syncfusion.Office.IOfficeMathBreak"/> class.
</summary>
</member>
<member name="M:Syncfusion.Office.OfficeMathBreak.GetPropertyValue(System.Int32)">
<summary>
Gets the property value.
</summary>
</member>
<member name="M:Syncfusion.Office.OfficeMathBreak.SetPropertyValue(System.Int32,System.Object)">
<summary>
Sets the property Value.
</summary>
</member>
<member name="M:Syncfusion.Office.OfficeMathBreak.GetDefValue(System.Int32)">
<summary>
Return default value of the respective key.
</summary>
</member>
<member name="M:Syncfusion.Office.OfficeMathBreak.HasValue(System.Int32)">
<summary>
Determines whether the specified property key has value.
</summary>
<param name="propertyKey">The property key.</param>
<returns>
if the specified property key has value, set to <c>true</c>.
</returns>
</member>
<member name="M:Syncfusion.Office.OfficeMathBreak.HasKey(System.Int32)">
<summary>
Returns the value indicating whether the key exists in the properties collection.
</summary>
<param name="key">The <b>integer</b> that specifies the key.</param>
<returns>
<b>True</b> if the specified key is present, otherwise <b>false</b>.
</returns>
</member>
<member name="M:Syncfusion.Office.OfficeMathBreak.Clone(Syncfusion.Office.IOfficeMathEntity)">
<summary>
Clones the item
</summary>
</member>
<member name="M:Syncfusion.Office.OfficeMathBreak.Close">
<summary>
Closes this Instance.
</summary>
</member>
<member name="P:Syncfusion.Office.OfficeMathBreak.AlignAt">
<summary>
Gets or sets an integer that represents the operator in one line.
</summary>
</member>
<member name="P:Syncfusion.Office.OfficeMathBreak.PropertiesHash">
<summary>
Gets the PropertiesHash value.
</summary>
</member>
<member name="P:Syncfusion.Office.OfficeMathBreak.Item(System.Int32)">
<summary>
Gets or sets the value for the property with specified key.
</summary>
</member>
<member name="T:Syncfusion.Office.OfficeMathFormat">
<summary>
Represents the <see cref="T:Syncfusion.Office.OfficeMathFormat"/> object that can be used for formatting the character of the mathematical text.
</summary>
</member>
<member name="M:Syncfusion.Office.OfficeMathFormat.Close">
<summary>
Closes this instance.
</summary>
</member>
<member name="M:Syncfusion.Office.OfficeMathFormat.GetPropertyValue(System.Int32)">
<summary>
Gets the property value.
</summary>
</member>
<member name="M:Syncfusion.Office.OfficeMathFormat.SetPropertyValue(System.Int32,System.Object)">
<summary>
Sets the property value.
</summary>
</member>
<member name="M:Syncfusion.Office.OfficeMathFormat.GetDefValue(System.Int32)">
<summary>
Return default value of the respective key.
</summary>
</member>
<member name="M:Syncfusion.Office.OfficeMathFormat.HasValue(System.Int32)">
<summary>
Determines whether the specified property key has value.
</summary>
<param name="propertyKey">The property key.</param>
<returns>
if the specified property key has value, set to <c>true</c>.
</returns>
</member>
<member name="M:Syncfusion.Office.OfficeMathFormat.HasKey(System.Int32)">
<summary>
Returns the value indicating whether the key exists in the properties collection.
</summary>
<param name="key">The <b>integer</b> that specifies the key.</param>
<returns>
<b>True</b> if the specified key is present, otherwise <b>false</b>.
</returns>
</member>
<member name="M:Syncfusion.Office.OfficeMathFormat.Clone(Syncfusion.Office.IOfficeMathEntity)">
<summary>
Clones the item
</summary>
</member>
<member name="P:Syncfusion.Office.OfficeMathFormat.HasAlignment">
<summary>
Gets or sets a boolean that represents the alignment property. When multiple alignment point is set, lastly set alignment point is considered. Default value is <b>false</b>.
</summary>
</member>
<member name="P:Syncfusion.Office.OfficeMathFormat.Break">
<summary>
Gets or sets individual line breaks in an equation.
</summary>
</member>
<member name="P:Syncfusion.Office.OfficeMathFormat.HasLiteral">
<summary>
Gets or sets a boolean that represents whether the characters in the run are literal (i.e., they are to be interpreted literally and not be built up based on any implied mathematical meaning). Default value is <b>false</b>.
</summary>
</member>
<member name="P:Syncfusion.Office.OfficeMathFormat.HasNormalText">
<summary>
Gets or sets a boolean that represents whether the run is normal text, i.e., math italics and math spacing are not applied. Default value is <b>false</b>.
</summary>
</member>
<member name="P:Syncfusion.Office.OfficeMathFormat.Font">
<summary>
Gets or sets the script applied to the characters in the run. Default value is <b>Roman</b>.
</summary>
</member>
<member name="P:Syncfusion.Office.OfficeMathFormat.Style">
<summary>
Gets or sets the style applied to the characters in the run. Default style is italic.
</summary>
</member>
<member name="P:Syncfusion.Office.OfficeMathFormat.PropertiesHash">
<summary>
Gets the propertieshash value.
</summary>
</member>
<member name="P:Syncfusion.Office.OfficeMathFormat.Item(System.Int32)">
<summary>
Gets or sets the value for the property with specified key.
</summary>
</member>
<member name="P:Syncfusion.Office.OfficeMathFormat.IsDefault">
<summary>
Gets or sets whether format is default.
</summary>
</member>
<member name="T:Syncfusion.Office.OfficeMathBreaks">
<summary>
Represents the Math break collection.
Represents the Math break collection.
</summary>
</member>
<member name="M:Syncfusion.Office.OfficeMathBreaks.#ctor(Syncfusion.Office.IOfficeMathEntity)">
<summary>
Initializes a new instance of the <see cref="T:Syncfusion.Office.IOfficeMathBreaks"/> class.
</summary>
<param name="owner">The owner.</param>
</member>
<member name="M:Syncfusion.Office.OfficeMathBreaks.Add(System.Int32)">
<summary>
Adds <see cref="T:Syncfusion.Office.IOfficeMathBreak"/> instance to the collection at specified index.
</summary>
<param name="index">The Index, where to add the <see cref="T:Syncfusion.Office.IOfficeMathBreak"/> instance.</param>
<returns>Returns the newly added <see cref="T:Syncfusion.Office.IOfficeMathBreak"/>. </returns>
</member>
<member name="M:Syncfusion.Office.OfficeMathBreaks.Add">
<summary>
Adds <see cref="T:Syncfusion.Office.IOfficeMathBreak"/> instance to the collection.
</summary>
<returns>Returns the newly added <see cref="T:Syncfusion.Office.IOfficeMathBreak"/>. </returns>
</member>
<member name="M:Syncfusion.Office.OfficeMathBreaks.CloneItemsTo(Syncfusion.Office.OfficeMathBreaks)">
<summary>
Clone the items in collection
</summary>
<param name="items"></param>
</member>
<member name="M:Syncfusion.Office.OfficeMathBreaks.Close">
<summary>
Clears the object.
</summary>
</member>
<member name="P:Syncfusion.Office.OfficeMathBreaks.Item(System.Int32)">
<summary>
Returns <see cref="T:Syncfusion.Office.IOfficeMathBreak"/> object that represents the specified item in the collection.
</summary>
</member>
<member name="T:Syncfusion.Office.OfficeMathBaseCollection">
<summary>
Represents a Collection of function.
</summary>
</member>
<member name="M:Syncfusion.Office.OfficeMathBaseCollection.#ctor(Syncfusion.Office.OfficeMath)">
<summary>
Initializes a new instance of the <see cref="T:Syncfusion.Office.OfficeMathBaseCollection"/> class with
the owner <see cref="T:Syncfusion.Office.OfficeMathBaseCollection"/> instance.
</summary>
<param name="owner">The owner.</param>
</member>
<member name="M:Syncfusion.Office.OfficeMathBaseCollection.Add(System.Int32,Syncfusion.Office.MathFunctionType)">
<summary>
Adds <see cref="T:Syncfusion.Office.IOfficeMathFunctionBase"/> instance to the collection at specified index.
</summary>
<param name="index">The Index, where to add the <see cref="T:Syncfusion.Office.IOfficeMathFunctionBase"/> instance.</param>
<param name="mathFunctionType"> Represents the type of function to add.</param>
<returns>Returns the newly added <see cref="T:Syncfusion.Office.IOfficeMathFunctionBase"/>. </returns>
</member>
<member name="M:Syncfusion.Office.OfficeMathBaseCollection.Add(Syncfusion.Office.MathFunctionType)">
<summary>
Adds <see cref="T:Syncfusion.Office.IOfficeMathFunctionBase"/> instance to the collection.
</summary>
<returns>Returns the newly added <see cref="T:Syncfusion.Office.IOfficeMathFunctionBase"/>. </returns>
</member>
<member name="M:Syncfusion.Office.OfficeMathBaseCollection.CloneItemsTo(Syncfusion.Office.OfficeMathBaseCollection)">
<summary>
Clone the items in collection
</summary>
<param name="items"></param>
</member>
<member name="M:Syncfusion.Office.OfficeMathBaseCollection.CloneItemsTo(Syncfusion.Office.OfficeMathBaseCollection,System.Int32,System.Int32)">
<summary>
Clone the items in collection from start index to end index
</summary>
<param name="items"></param>
<param name="startIndex">Represent the start index to clone from.</param>
<param name="endIndex">Represent the end index to clone until.</param>
</member>
<member name="M:Syncfusion.Office.OfficeMathBaseCollection.Close">
<summary>
Clears the object.
</summary>
</member>
<member name="P:Syncfusion.Office.OfficeMathBaseCollection.Item(System.Int32)">
<summary>
Represents the specified item in the Collection.
</summary>
</member>
<member name="T:Syncfusion.Office.OfficeMathMatrixColumn">
<summary>
Represents a matrix column.
</summary>
</member>
<member name="F:Syncfusion.Office.OfficeMathMatrixColumn.ColumnAlignKey">
<summary>
Keys.
</summary>
</member>
<member name="F:Syncfusion.Office.OfficeMathMatrixColumn.m_args">
<summary>
Gets a <see cref="T:Syncfusion.Office.OfficeMaths"/> object that represents the arguments in a matrix row.
</summary>
</member>
<member name="F:Syncfusion.Office.OfficeMathMatrixColumn.m_propertiesHash">
<summary>
Holds the collection of properties values and its keys.
</summary>
</member>
<member name="M:Syncfusion.Office.OfficeMathMatrixColumn.#ctor(Syncfusion.Office.IOfficeMathEntity)">
<summary>
Initializes a new instance of the <see cref="T:Syncfusion.Office.OfficeMathMatrixColumns"/> class.
</summary>
</member>
<member name="M:Syncfusion.Office.OfficeMathMatrixColumn.GetPropertyValue(System.Int32)">
<summary>
Gets the property value.
</summary>
<param name="propKey">The prop key.</param>
<returns></returns>
</member>
<member name="M:Syncfusion.Office.OfficeMathMatrixColumn.SetPropertyValue(System.Int32,System.Object)">
<summary>
Sets the property value.
</summary>
<param name="propKey">The property key.</param>
<param name="value">The value.</param>
</member>
<member name="M:Syncfusion.Office.OfficeMathMatrixColumn.GetDefValue(System.Int32)">
<summary>
Sets the default properties.
</summary>
</member>
<member name="M:Syncfusion.Office.OfficeMathMatrixColumn.HasValue(System.Int32)">
<summary>
Determines whether the specified property key has value.
</summary>
<param name="propertyKey">The property key.</param>
<returns>
if the specified property key has value, set to <c>true</c>.
</returns>
</member>
<member name="M:Syncfusion.Office.OfficeMathMatrixColumn.HasKey(System.Int32)">
<summary>
Returns the value indicating whether the key exists in the properties collection.
</summary>
<param name="key">The <b>integer</b> that specifies the key.</param>
<returns>
<b>True</b> if the specified key is present, otherwise <b>false</b>.
</returns>
</member>
<member name="M:Syncfusion.Office.OfficeMathMatrixColumn.OnColumnAdded">
<summary>
After added a column in matrix.
</summary>
</member>
<member name="M:Syncfusion.Office.OfficeMathMatrixColumn.Clone(Syncfusion.Office.IOfficeMathEntity)">
<summary>
Clones the item
</summary>
<returns></returns>
</member>
<member name="M:Syncfusion.Office.OfficeMathMatrixColumn.Close">
<summary>
Closes the instances.
</summary>
</member>
<member name="P:Syncfusion.Office.OfficeMathMatrixColumn.ColumnIndex">
<summary>
Gets an Integer that represents the ordinal position of a column within the collection of columns in a matrix.
</summary>
</member>
<member name="P:Syncfusion.Office.OfficeMathMatrixColumn.Arguments">
<summary>
Gets a <see cref="T:Syncfusion.Office.OfficeMaths"/> object that represents the arguments in a matrix column.
</summary>
</member>
<member name="P:Syncfusion.Office.OfficeMathMatrixColumn.HorizontalAlignment">
<summary>
Gets or sets a MathHorizontalAlignment constant that represents the horizontal alignment for arguments in a matrix column.
</summary>
</member>
<member name="P:Syncfusion.Office.OfficeMathMatrixColumn.PropertiesHash">
<summary>
Gets the PropertiesHash value.
</summary>
</member>
<member name="P:Syncfusion.Office.OfficeMathMatrixColumn.Item(System.Int32)">
<summary>
Gets or sets the value for the property with specified key.
</summary>
</member>
<member name="T:Syncfusion.Office.OfficeMathMatrixRow">
<summary>
Represents a matrix row.
</summary>
</member>
<member name="F:Syncfusion.Office.OfficeMathMatrixRow.m_args">
<summary>
Gets a <see cref="T:Syncfusion.Office.OfficeMaths"/> object that represents the arguments in a matrix row.
</summary>
</member>
<member name="M:Syncfusion.Office.OfficeMathMatrixRow.#ctor(Syncfusion.Office.IOfficeMathEntity)">
<summary>
Initializes a new instance of the <see cref="T:Syncfusion.Office.OfficeMathMatrixRow"/> class.
</summary>
</member>
<member name="M:Syncfusion.Office.OfficeMathMatrixRow.Clone(Syncfusion.Office.IOfficeMathEntity)">
<summary>
Clones the item
</summary>
</member>
<member name="M:Syncfusion.Office.OfficeMathMatrixRow.Close">
<summary>
Closes the instances.
</summary>
</member>
<member name="M:Syncfusion.Office.OfficeMathMatrixRow.OnRowAdded">
<summary>
After row added into the matrix.
</summary>
</member>
<member name="P:Syncfusion.Office.OfficeMathMatrixRow.RowIndex">
<summary>
Gets an integer that represents the ordinal position of a row within the collection of rows in a matrix.
</summary>
</member>
<member name="P:Syncfusion.Office.OfficeMathMatrixRow.Arguments">
<summary>
Gets a <see cref="T:Syncfusion.Office.OfficeMaths"/> object that represents the arguments in a matrix row.
</summary>
</member>
<member name="T:Syncfusion.Office.OfficeMathRightScript">
<summary>
Represents an equation with a base that contains a superscript or subscript.
</summary>
</member>
<member name="F:Syncfusion.Office.OfficeMathRightScript.m_controlProperties">
<summary>
Represents the character format
</summary>
</member>
<member name="M:Syncfusion.Office.OfficeMathRightScript.#ctor(Syncfusion.Office.IOfficeMathEntity)">
<summary>
Initializes a new instance of the <see cref="T:Syncfusion.Office.IOfficeMathRightScript"/> class.
</summary>
</member>
<member name="M:Syncfusion.Office.OfficeMathRightScript.ToScrPre">
<summary>
Converts an equation with a base superscript or subscript to an equation with a superscript or subscript to the left of the base.
</summary>
</member>
<member name="M:Syncfusion.Office.OfficeMathRightScript.RemoveSub">
<summary>
Removes the subscript for an equation and returns an <see cref="T:Syncfusion.Office.OfficeMathFunctionBase"/> object that represents the updated equation without the subscript.
</summary>
</member>
<member name="M:Syncfusion.Office.OfficeMathRightScript.RemoveSup">
<summary>
Removes the superscript for an equation and returns an <see cref="T:Syncfusion.Office.OfficeMathFunctionBase"/> object that represents the updated equation without the superscript.
</summary>
</member>
<member name="M:Syncfusion.Office.OfficeMathRightScript.Close">
<summary>
Closes this instance.
</summary>
</member>
<member name="M:Syncfusion.Office.OfficeMathRightScript.HasValue(System.Int32)">
<summary>
Determines whether the specified property key has value.
</summary>
<param name="propertyKey">The property key.</param>
<returns>
if the specified property key has value, set to <c>true</c>.
</returns>
</member>
<member name="M:Syncfusion.Office.OfficeMathRightScript.HasKey(System.Int32)">
<summary>
Returns the value indicating whether the key exists in the properties collection.
</summary>
<param name="key">The <b>integer</b> that specifies the key.</param>
<returns>
<b>True</b> if the specified key is present, otherwise <b>false</b>.
</returns>
</member>
<member name="M:Syncfusion.Office.OfficeMathRightScript.GetPropertyValue(System.Int32)">
<summary>
Gets the property value.
</summary>
</member>
<member name="M:Syncfusion.Office.OfficeMathRightScript.SetPropertyValue(System.Int32,System.Object)">
<summary>
Sets the property value.
</summary>
</member>
<member name="M:Syncfusion.Office.OfficeMathRightScript.GetDefValue(System.Int32)">
<summary>
Return default value of the respective key.
</summary>
</member>
<member name="M:Syncfusion.Office.OfficeMathRightScript.Clone(Syncfusion.Office.IOfficeMathEntity)">
<summary>
Clones the item
</summary>
</member>
<member name="P:Syncfusion.Office.OfficeMathRightScript.IsSkipAlign">
<summary>
Gets or sets a boolean that represents whether to horizontally align subscripts and superscripts in the <see cref="T:Syncfusion.Office.IOfficeMathRightScript"/> object. Read/write.
</summary>
</member>
<member name="P:Syncfusion.Office.OfficeMathRightScript.Subscript">
<summary>
Gets an <see cref="T:Syncfusion.Office.IOfficeMath"/> object that represents the subscript for a <see cref="T:Syncfusion.Office.IOfficeMathRightScript"/> object. Read-only.
</summary>
</member>
<member name="P:Syncfusion.Office.OfficeMathRightScript.Superscript">
<summary>
Gets an <see cref="T:Syncfusion.Office.IOfficeMath"/> object that represents the superscript for a <see cref="T:Syncfusion.Office.IOfficeMathRightScript"/> object. Read-only.
</summary>
</member>
<member name="P:Syncfusion.Office.OfficeMathRightScript.Equation">
<summary>
Gets an <see cref="T:Syncfusion.Office.IOfficeMath"/> object that represents the base of the specified equation object. Read-only.
</summary>
</member>
<member name="P:Syncfusion.Office.OfficeMathRightScript.PropertiesHash">
<summary>
Gets the propertieshash value.
</summary>
</member>
<member name="P:Syncfusion.Office.OfficeMathRightScript.Item(System.Int32)">
<summary>
Gets or sets the value for the property with specified key.
</summary>
</member>
<member name="P:Syncfusion.Office.OfficeMathRightScript.ControlProperties">
<summary>
Gets or sets the <see cref="T:Syncfusion.Office.IOfficeRunFormat"/> object that represent the control property of MathML function.
</summary>
</member>
<member name="T:Syncfusion.Office.OfficeMathScript">
<summary>
Represents an equation with a base that contains a subscript or superscript.
</summary>
</member>
<member name="F:Syncfusion.Office.OfficeMathScript.m_scriptType">
<summary>
Specifies a <see cref="T:Syncfusion.Office.MathScriptType"/> represent either a subscript or superscript.
</summary>
</member>
<member name="F:Syncfusion.Office.OfficeMathScript.m_equation">
<summary>
Specifies an <see cref="T:Syncfusion.Office.IOfficeMath"/> object that represents the base of the specified equation object.
</summary>
</member>
<member name="F:Syncfusion.Office.OfficeMathScript.m_script">
<summary>
Gets the type of the script.
</summary>
</member>
<member name="F:Syncfusion.Office.OfficeMathScript.m_controlProperties">
<summary>
Represents the character format
</summary>
</member>
<member name="M:Syncfusion.Office.OfficeMathScript.#ctor(Syncfusion.Office.IOfficeMathEntity)">
<summary>
Initializes a new instance of the <see cref="T:Syncfusion.Office.IOfficeMathScript"/> class.
</summary>
</member>
<member name="M:Syncfusion.Office.OfficeMathScript.Close">
<summary>
Closes this Instance.
</summary>
</member>
<member name="M:Syncfusion.Office.OfficeMathScript.Clone(Syncfusion.Office.IOfficeMathEntity)">
<summary>
Clones the item
</summary>
</member>
<member name="P:Syncfusion.Office.OfficeMathScript.ScriptType">
<summary>
Gets or sets a <see cref="T:Syncfusion.Office.MathScriptType"/> type to represent either a subscript or superscript.
</summary>
</member>
<member name="P:Syncfusion.Office.OfficeMathScript.Equation">
<summary>
Gets an <see cref="T:Syncfusion.Office.IOfficeMath"/> object that represents the base of the specified equation object.
</summary>
</member>
<member name="P:Syncfusion.Office.OfficeMathScript.Script">
<summary>
Gets the type of the script.
</summary>
</member>
<member name="P:Syncfusion.Office.OfficeMathScript.ControlProperties">
<summary>
Gets or sets the <see cref="T:Syncfusion.Office.IOfficeRunFormat"/> object that represent the control property of MathML function.
</summary>
</member>
<member name="T:Syncfusion.Office.MathJustification">
<summary>
Specifies the justification of the equation.
</summary>
</member>
<member name="F:Syncfusion.Office.MathJustification.CenterGroup">
<summary>
Center as a group.
</summary>
</member>
<member name="F:Syncfusion.Office.MathJustification.Center">
<summary>
Center.
</summary>
</member>
<member name="F:Syncfusion.Office.MathJustification.Left">
<summary>
Left.
</summary>
</member>
<member name="F:Syncfusion.Office.MathJustification.Right">
<summary>
Right.
</summary>
</member>
<member name="T:Syncfusion.Office.MathFontType">
<summary>
Specifies the script applied to the characters in the run.
</summary>
</member>
<member name="F:Syncfusion.Office.MathFontType.DoubleStruck">
<summary>
Double-struck.
</summary>
</member>
<member name="F:Syncfusion.Office.MathFontType.Fraktur">
<summary>
Fractur.
</summary>
</member>
<member name="F:Syncfusion.Office.MathFontType.Monospace">
<summary>
Monospace.
</summary>
</member>
<member name="F:Syncfusion.Office.MathFontType.Roman">
<summary>
Roman.
</summary>
</member>
<member name="F:Syncfusion.Office.MathFontType.SansSerif">
<summary>
Sans-serif.
</summary>
</member>
<member name="F:Syncfusion.Office.MathFontType.Script">
<summary>
Script.
</summary>
</member>
<member name="T:Syncfusion.Office.MathStyleType">
<summary>
Specifies the style of the characters in the run.
</summary>
</member>
<member name="F:Syncfusion.Office.MathStyleType.Italic">
<summary>
Italic.
</summary>
</member>
<member name="F:Syncfusion.Office.MathStyleType.BoldItalic">
<summary>
Bold-italic.
</summary>
</member>
<member name="F:Syncfusion.Office.MathStyleType.Bold">
<summary>
Bold.
</summary>
</member>
<member name="F:Syncfusion.Office.MathStyleType.Regular">
<summary>
Plain.
</summary>
</member>
<member name="T:Syncfusion.Office.MathFunctionType">
<summary>
Specifies the type of the MathML function.
</summary>
</member>
<member name="F:Syncfusion.Office.MathFunctionType.Accent">
<summary>
Specifies equation accent mark.
</summary>
</member>
<member name="F:Syncfusion.Office.MathFunctionType.Bar">
<summary>
Specifies equation fraction bar.
</summary>
</member>
<member name="F:Syncfusion.Office.MathFunctionType.BorderBox">
<summary>
Specifies border box.
</summary>
</member>
<member name="F:Syncfusion.Office.MathFunctionType.Box">
<summary>
Specifies box.
</summary>
</member>
<member name="F:Syncfusion.Office.MathFunctionType.Delimiter">
<summary>
Specifies equation delimiters.
</summary>
</member>
<member name="F:Syncfusion.Office.MathFunctionType.EquationArray">
<summary>
Specifies equation array.
</summary>
</member>
<member name="F:Syncfusion.Office.MathFunctionType.Fraction">
<summary>
Specifies equation fraction.
</summary>
</member>
<member name="F:Syncfusion.Office.MathFunctionType.Function">
<summary>
Specifies equation function.
</summary>
</member>
<member name="F:Syncfusion.Office.MathFunctionType.GroupCharacter">
<summary>
Specifies Group character.
</summary>
</member>
<member name="F:Syncfusion.Office.MathFunctionType.Limit">
<summary>
Specifies lower and upper limit.
</summary>
</member>
<member name="F:Syncfusion.Office.MathFunctionType.Matrix">
<summary>
Specifies equation matrix.
</summary>
</member>
<member name="F:Syncfusion.Office.MathFunctionType.NArray">
<summary>
Specifies equation N-array operator.
</summary>
</member>
<member name="F:Syncfusion.Office.MathFunctionType.Phantom">
<summary>
Specifies equation phantom.
</summary>
</member>
<member name="F:Syncfusion.Office.MathFunctionType.Radical">
<summary>
Specifies equation base expression.
</summary>
</member>
<member name="F:Syncfusion.Office.MathFunctionType.LeftSubSuperscript">
<summary>
Specifies Left subScript.
</summary>
</member>
<member name="F:Syncfusion.Office.MathFunctionType.SubSuperscript">
<summary>
Specifies subScript and superScript.
</summary>
</member>
<member name="F:Syncfusion.Office.MathFunctionType.RightSubSuperscript">
<summary>
Specifies SubSuperScrpit.
</summary>
</member>
<member name="F:Syncfusion.Office.MathFunctionType.RunElement">
<summary>
Specifies Equation text.
</summary>
</member>
<member name="T:Syncfusion.Office.MathDelimiterShapeType">
<summary>
Specifies the type that represents the appearance of delimiters.
</summary>
</member>
<member name="F:Syncfusion.Office.MathDelimiterShapeType.Centered">
<summary>
Vertically centers delimiters around the entire height of the equation causing delimiters grow equally above and below their midpoint.
</summary>
</member>
<member name="F:Syncfusion.Office.MathDelimiterShapeType.Match">
<summary>
Matches the shape of the delimiters to the size of their contents.
</summary>
</member>
<member name="T:Syncfusion.Office.MathFractionType">
<summary>
Specifies the type of fraction bar.
</summary>
</member>
<member name="F:Syncfusion.Office.MathFractionType.NormalFractionBar">
<summary>
Normal fraction bar.
</summary>
</member>
<member name="F:Syncfusion.Office.MathFractionType.NoFractionBar">
<summary>
No fraction bar.
</summary>
</member>
<member name="F:Syncfusion.Office.MathFractionType.SkewedFractionBar">
<summary>
Skewed fraction bar.
</summary>
</member>
<member name="F:Syncfusion.Office.MathFractionType.FractionInline">
<summary>
Show fraction inline.
</summary>
</member>
<member name="T:Syncfusion.Office.MathHorizontalAlignment">
<summary>
Specifies the horizontal alignment for arguments in a matrix column.
</summary>
</member>
<member name="F:Syncfusion.Office.MathHorizontalAlignment.Center">
<summary>
Center.
</summary>
</member>
<member name="F:Syncfusion.Office.MathHorizontalAlignment.Left">
<summary>
Left.
</summary>
</member>
<member name="F:Syncfusion.Office.MathHorizontalAlignment.Right">
<summary>
Right.
</summary>
</member>
<member name="T:Syncfusion.Office.MathVerticalAlignment">
<summary>
Specifies the vertical alignment for a matrix.
</summary>
</member>
<member name="F:Syncfusion.Office.MathVerticalAlignment.Center">
<summary>
Center.
</summary>
</member>
<member name="F:Syncfusion.Office.MathVerticalAlignment.Top">
<summary>
Top.
</summary>
</member>
<member name="F:Syncfusion.Office.MathVerticalAlignment.Bottom">
<summary>
Bottom.
</summary>
</member>
<member name="T:Syncfusion.Office.SpacingRule">
<summary>
Specifies the spacing rule for the space that appears between two columns or two rows in a mathematical equation.
</summary>
</member>
<member name="F:Syncfusion.Office.SpacingRule.Single">
<summary>
Single line.
</summary>
</member>
<member name="F:Syncfusion.Office.SpacingRule.OneAndHalf">
<summary>
One and half line.
</summary>
</member>
<member name="F:Syncfusion.Office.SpacingRule.Double">
<summary>
Double line.
</summary>
</member>
<member name="F:Syncfusion.Office.SpacingRule.Exactly">
<summary>
Exact line.
</summary>
</member>
<member name="F:Syncfusion.Office.SpacingRule.Multiple">
<summary>
Multiple line.
</summary>
</member>
<member name="T:Syncfusion.Office.MathScriptType">
<summary>
Specifies the script type of equation.
</summary>
</member>
<member name="F:Syncfusion.Office.MathScriptType.Superscript">
<summary>
SuperScript.
</summary>
</member>
<member name="F:Syncfusion.Office.MathScriptType.Subscript">
<summary>
SubScript.
</summary>
</member>
<member name="T:Syncfusion.Office.MathLimitType">
<summary>
Specifies the type that represents the limit.
</summary>
</member>
<member name="F:Syncfusion.Office.MathLimitType.LowerLimit">
<summary>
Specifies the lower limit.
</summary>
</member>
<member name="F:Syncfusion.Office.MathLimitType.UpperLimit">
<summary>
Specifies the upper limit.
</summary>
</member>
<member name="T:Syncfusion.Office.BreakOnBinaryOperatorsType">
<summary>
Specifies how binary operators are treated when they coincide with a line break.
</summary>
</member>
<member name="F:Syncfusion.Office.BreakOnBinaryOperatorsType.After">
<summary>
Specifies the binary operator appears after the break.
</summary>
</member>
<member name="F:Syncfusion.Office.BreakOnBinaryOperatorsType.Before">
<summary>
Specifies the binary operator appears before the break.
</summary>
</member>
<member name="F:Syncfusion.Office.BreakOnBinaryOperatorsType.Repeat">
<summary>
Specifies the binary operator appears on both sides of the break.
</summary>
</member>
<member name="T:Syncfusion.Office.BreakOnBinarySubtractionType">
<summary>
Specifies how the subtraction operator is treated when it coincides with a line break, when brkBin is set to repeat.
</summary>
</member>
<member name="F:Syncfusion.Office.BreakOnBinarySubtractionType.PlusMinus">
<summary>
Specifies the repetition of subtraction sign after a line-wrapping break is plus on the first line and minus on the second line.
</summary>
</member>
<member name="F:Syncfusion.Office.BreakOnBinarySubtractionType.MinusPlus">
<summary>
Specifies the repetition of subtraction sign after a line-wrapping break is minus on the first line and plus on the second line.
</summary>
</member>
<member name="F:Syncfusion.Office.BreakOnBinarySubtractionType.MinusMinus">
<summary>
Specifies the repetition of subtraction sign after a line-wrapping break is minus on the first and second lines.
</summary>
</member>
<member name="T:Syncfusion.Office.LimitLocationType">
<summary>
Represent the limit location of integral and n-ary.
</summary>
</member>
<member name="F:Syncfusion.Office.LimitLocationType.SubSuperscript">
<summary>
Subscript-Superscript location
</summary>
</member>
<member name="F:Syncfusion.Office.LimitLocationType.UnderOver">
<summary>
Under-Over location.
</summary>
</member>
<member name="T:Syncfusion.Office.IOfficeRun">
<summary>
Represents an interface for math run elements
</summary>
</member>
<member name="M:Syncfusion.Office.IOfficeRun.CloneRun">
<summary>
Creates a duplicate copy of <see cref="T:Syncfusion.Office.IOfficeRun"/>.
</summary>
<returns>The reference of the newly created object.</returns>
</member>
<member name="M:Syncfusion.Office.IOfficeRun.Dispose">
<summary>
Releases all resources used by the object.
</summary>
</member>
<member name="P:Syncfusion.Office.IOfficeRun.OwnerMathRunElement">
<summary>
Reserved for internal use.
</summary>
</member>
<member name="T:Syncfusion.Compression.Utils">
<summary>
Utility Class
</summary>
</member>
<member name="F:Syncfusion.Compression.Utils.DEF_REVERSE_BITS">
<summary>
Bit-indexes for reversing.
</summary>
</member>
<member name="F:Syncfusion.Compression.Utils.DEF_HUFFMAN_DYNTREE_CODELENGTHS_ORDER">
<summary>
Code lengths for the code length alphabet.
</summary>
</member>
<member name="M:Syncfusion.Compression.Utils.BitReverse(System.Int32)">
<summary>
Reverses bit.
</summary>
<param name="value"></param>
<returns></returns>
</member>
<member name="F:Syncfusion.Compression.XmlConvertExtension.NumberRegex">
<summary>
Number regex used for pattern
</summary>
</member>
<member name="F:Syncfusion.Compression.XmlConvertExtension.WhitespaceChars">
<summary>
Read-Only static whitespace characters
</summary>
</member>
<member name="M:Syncfusion.Compression.XmlConvertExtension.ToByte(System.String)">
<summary>
Convert the string to byte value
</summary>
<param name="s">input string</param>
<returns>the byte value</returns>
</member>
<member name="M:Syncfusion.Compression.XmlConvertExtension.ToInt16(System.String)">
<summary>
Convert the string to Int16 value
</summary>
<param name="s">input string</param>
<returns>the Int16 value</returns>
</member>
<member name="M:Syncfusion.Compression.XmlConvertExtension.ToInt32(System.String)">
<summary>
Convert the string to Int32 value
</summary>
<param name="s">input string</param>
<returns>the Int32 value</returns>
</member>
<member name="M:Syncfusion.Compression.XmlConvertExtension.ToInt64(System.String)">
<summary>
Convert the string to Int64 value
</summary>
<param name="s">input string</param>
<returns>the Int64 value</returns>
</member>
<member name="M:Syncfusion.Compression.XmlConvertExtension.ToUInt16(System.String)">
<summary>
Convert the string to UInt16 value
</summary>
<param name="s">input string</param>
<returns>the UInt16 value</returns>
</member>
<member name="M:Syncfusion.Compression.XmlConvertExtension.ToUInt32(System.String)">
<summary>
Convert the string to UInt32 value
</summary>
<param name="s">input string</param>
<returns>the UInt32 value</returns>
</member>
<member name="M:Syncfusion.Compression.XmlConvertExtension.TrimString(System.String)">
<summary>
Trim a string using XML whitespace characters
</summary>
<param name="value">input string value</param>
<returns>the trimmed string</returns>
</member>
<member name="M:Syncfusion.Compression.XmlConvertExtension.ToSingle(System.String)">
<summary>
Convert the string to Single value
</summary>
<param name="s">input string</param>
<returns>the Single value</returns>
</member>
<member name="M:Syncfusion.Compression.XmlConvertExtension.ToDouble(System.String)">
<summary>
Convert the string to Double value
</summary>
<param name="s">input string</param>
<returns>the Double value</returns>
</member>
<member name="M:Syncfusion.Compression.XmlConvertExtension.ToBoolean(System.String)">
<summary>
Convert the string to Boolean value
</summary>
<param name="s">input string</param>
<returns>the Boolean value</returns>
</member>
<member name="M:Syncfusion.Compression.XmlConvertExtension.GetTruncatedValue(System.String,System.Double)">
<summary>
Try to get the number value from misplaced string
</summary>
<param name="input">the input string</param>
<param name="maxValue">the maximum value</param>
<returns>the extracted value</returns>
</member>
<member name="M:Syncfusion.Compression.XmlConvertExtension.ToDateTimeOffset(System.String)">
<summary>
Convert the string to DateTimeOffset value
</summary>
<param name="value">input string</param>
<returns>the DateTimeOffset value</returns>
</member>
<member name="M:Syncfusion.Compression.XmlConvertExtension.IsWhiteSpace(System.String)">
<summary>
Check whether the string having only whitespace
</summary>
<param name="value">the input string</param>
<returns>the boolean value</returns>
</member>
<member name="M:Syncfusion.Compression.XmlConvertExtension.ToDateTime(System.String,System.Xml.XmlDateTimeSerializationMode)">
<summary>
Convert the string to DateTime value
</summary>
<param name="value">input string</param>
<param name="dateTimeOption">Xsd mode for date time</param>
<returns>the DateTime value</returns>
</member>
<member name="F:Syncfusion.Office.CollectionBase`1.m_arrItems">
<summary>
List with collection items.
</summary>
</member>
<member name="M:Syncfusion.Office.CollectionBase`1.#ctor">
<summary>
Initializes a new instance of the class with the default initial capacity.
</summary>
</member>
<member name="M:Syncfusion.Office.CollectionBase`1.#ctor(System.Int32)">
<summary>
Initializes a new instance of the class with the specified capacity.
</summary>
<param name="capacity">The number of elements that the new list can initially store.</param>
</member>
<member name="M:Syncfusion.Office.CollectionBase`1.Clear">
<summary>
Removes all objects from the System.Collections.CollectionBase instance.
</summary>
</member>
<member name="M:Syncfusion.Office.CollectionBase`1.Insert(System.Int32,`0)">
<summary>
Inserts an element into the list at the specified index.
</summary>
<param name="index">The zero-based index at which item should be inserted.</param>
<param name="item">The object to insert. The value can be null for reference types.</param>
</member>
<member name="M:Syncfusion.Office.CollectionBase`1.GetEnumerator">
<summary>
Returns an enumerator that iterates through this instance.
</summary>
<returns>An enumerator for this instance.</returns>
</member>
<member name="M:Syncfusion.Office.CollectionBase`1.OnClear">
<summary>
Performs additional custom processes when clearing the contents of this instance.
</summary>
</member>
<member name="M:Syncfusion.Office.CollectionBase`1.OnClearComplete">
<summary>
Performs additional custom processes after clearing the contents of this instance.
</summary>
</member>
<member name="M:Syncfusion.Office.CollectionBase`1.OnInsert(System.Int32,`0)">
<summary>
Performs additional custom processes before inserting a new element into this instance.
</summary>
<param name="index">The zero-based index at which to insert value.</param>
<param name="value">The new value of the element at index.</param>
</member>
<member name="M:Syncfusion.Office.CollectionBase`1.OnInsertComplete(System.Int32,`0)">
<summary>
Performs additional custom processes after inserting a new element into this instance.
</summary>
<param name="index">The zero-based index at which to insert value.</param>
<param name="value">The new value of the element at index.</param>
</member>
<member name="M:Syncfusion.Office.CollectionBase`1.OnRemove(System.Int32,`0)">
<summary>
Performs additional custom processes when removing an element from this instance.
</summary>
<param name="index">The zero-based index at which value can be found.</param>
<param name="value">The value of the element to remove from index.</param>
</member>
<member name="M:Syncfusion.Office.CollectionBase`1.OnRemoveComplete(System.Int32,`0)">
<summary>
Performs additional custom processes after removing an element from this instance.
</summary>
<param name="index">The zero-based index at which value can be found.</param>
<param name="value">The value of the element to remove from index.</param>
</member>
<member name="M:Syncfusion.Office.CollectionBase`1.OnSet(System.Int32,`0,`0)">
<summary>
Performs additional custom processes before setting a value in this instance.
</summary>
<param name="index">The zero-based index at which oldValue can be found.</param>
<param name="oldValue">The value to replace with newValue.</param>
<param name="newValue">The new value of the element at index.</param>
</member>
<member name="M:Syncfusion.Office.CollectionBase`1.OnSetComplete(System.Int32,`0,`0)">
<summary>
Performs additional custom processes after setting a value in this instance.
</summary>
<param name="index">The zero-based index at which oldValue can be found.</param>
<param name="oldValue">The value to replace with newValue.</param>
<param name="newValue">The new value of the element at index.</param>
</member>
<member name="M:Syncfusion.Office.CollectionBase`1.RemoveAt(System.Int32)">
<summary>
Removes the element at the specified index of this instance.
</summary>
<param name="index">The zero-based index of the element to remove.</param>
</member>
<member name="M:Syncfusion.Office.CollectionBase`1.Clone">
<summary>
Creates copy of the collection.
</summary>
<param name="count">Count for the new collection.</param>
<returns>A copy of the collection.</returns>
</member>
<member name="P:Syncfusion.Office.CollectionBase`1.Capacity">
<summary>
Gets or sets the number of elements that the System.Collections.CollectionBase can contain.
</summary>
</member>
<member name="P:Syncfusion.Office.CollectionBase`1.Count">
<summary>
Gets the number of elements contained in the System.Collections.CollectionBase instance.
</summary>
</member>
<member name="P:Syncfusion.Office.CollectionBase`1.InnerList">
<summary>
Gets the list of elements in the instance.
</summary>
</member>
<member name="P:Syncfusion.Office.CollectionBase`1.List">
<summary>
Gets the list of elements in the instance.
</summary>
</member>
<member name="T:Syncfusion.Office.MetaProperties">
<summary>
Represents a collection of properties describing the metadata stored in a document.
</summary>
</member>
<member name="M:Syncfusion.Office.MetaProperties.FindByName(System.String)">
<summary>
Finds a metadata property in the collection with specified display name.
</summary>
<param name="name"></param>
<returns></returns>
</member>
<member name="M:Syncfusion.Office.MetaProperties.#ctor">
<summary>
Initializes a new instance of the <see cref="T:Syncfusion.Office.MetaProperties"/> class with the specified
<see cref="T:Syncfusion.Office.MetaProperties"/> instance.
</summary>
</member>
<member name="M:Syncfusion.Office.MetaProperties.Add(Syncfusion.Office.MetaProperty)">
<summary>
Adds the specified Metaproperty.
</summary>
<param name="metaProperty">The metaProperty.</param>
</member>
<member name="M:Syncfusion.Office.MetaProperties.Remove(Syncfusion.Office.MetaProperty)">
<summary>
Removes the specified MetaProperty.
</summary>
<param name="MetaProperty">The metaProperty.</param>
</member>
<member name="M:Syncfusion.Office.MetaProperties.Close">
<summary>
Clears the object.
</summary>
</member>
<member name="P:Syncfusion.Office.MetaProperties.Item(System.Int32)">
<summary>
Gets the <see cref="T:Syncfusion.Office.MetaProperty"/> at the specified index.
</summary>
<param name="index">The <b>integer </b>that represents the position of the metadata property in the document to get. </param>
<value>The <see cref="T:Syncfusion.Office.MetaProperty"/> at the specified index.</value>
<exception cref="T:System.ArgumentOutOfRangeException">The index is not valid in the <see cref="T:Syncfusion.Office.MetaProperties"/></exception>
</member>
<member name="P:Syncfusion.Office.MetaProperties.Count">
<summary>
Gets the number of items in the collection.
</summary>
<value>The <b>integer</b> that specifies the count of items.</value>
</member>
<member name="P:Syncfusion.Office.MetaProperties.InnerList">
<summary>
Gets the inner list.
</summary>
<value>The inner list.</value>
</member>
<member name="T:Syncfusion.Office.MetaPropertyType">
<summary>
Specifies the metadata property type.
</summary>
</member>
<member name="F:Syncfusion.Office.MetaPropertyType.Unknown">
<summary>
Represents an unknown value.
</summary>
</member>
<member name="F:Syncfusion.Office.MetaPropertyType.Boolean">
<summary>
Represents a Boolean value.
</summary>
</member>
<member name="F:Syncfusion.Office.MetaPropertyType.Choice">
<summary>
Represents a value from one or more choices.
</summary>
</member>
<member name="F:Syncfusion.Office.MetaPropertyType.Currency">
<summary>
Represents a Currency value.
</summary>
</member>
<member name="F:Syncfusion.Office.MetaPropertyType.DateTime">
<summary>
Represents a DateTime value.
</summary>
</member>
<member name="F:Syncfusion.Office.MetaPropertyType.Lookup">
<summary>
Represents a value used to lookup another value.
</summary>
</member>
<member name="F:Syncfusion.Office.MetaPropertyType.Note">
<summary>
Represents a value of one or more sentences.
</summary>
</member>
<member name="F:Syncfusion.Office.MetaPropertyType.Number">
<summary>
Represents a generic number data type.
</summary>
</member>
<member name="F:Syncfusion.Office.MetaPropertyType.Text">
<summary>
Represents a Text value.
</summary>
</member>
<member name="F:Syncfusion.Office.MetaPropertyType.Url">
<summary>
Represents a URL.
</summary>
</member>
<member name="F:Syncfusion.Office.MetaPropertyType.User">
<summary>
Represents a category of user.
</summary>
</member>
<member name="T:Syncfusion.Office.SystemKind">
<summary>
Specifies the type of system
</summary>
</member>
<member name="F:Syncfusion.Office.SystemKind.Win16">
<summary>
16 bit Windows.
</summary>
</member>
<member name="F:Syncfusion.Office.SystemKind.Win32">
<summary>
32 bit Windows
</summary>
</member>
<member name="F:Syncfusion.Office.SystemKind.Mac">
<summary>
Macintosh
</summary>
</member>
<member name="F:Syncfusion.Office.SystemKind.Win64">
<summary>
64 bit Windows
</summary>
</member>
<member name="T:Syncfusion.Office.VbaModuleType">
<summary>
Specifies the Vba module type
</summary>
</member>
<member name="F:Syncfusion.Office.VbaModuleType.StdModule">
<summary>
Module
</summary>
</member>
<member name="F:Syncfusion.Office.VbaModuleType.ClassModule">
<summary>
Class module
</summary>
</member>
<member name="F:Syncfusion.Office.VbaModuleType.MsForm">
<summary>
User form
</summary>
</member>
<member name="F:Syncfusion.Office.VbaModuleType.Document">
<summary>
Workbook or Worksheet code
</summary>
</member>
<member name="T:Syncfusion.Office.VbaReferenceType">
<summary>
Specifies the Vba reference type
</summary>
</member>
<member name="F:Syncfusion.Office.VbaReferenceType.ReferenceControl">
<summary>
Control reference
</summary>
</member>
<member name="F:Syncfusion.Office.VbaReferenceType.ReferenceOriginal">
<summary>
Original reference
</summary>
</member>
<member name="F:Syncfusion.Office.VbaReferenceType.ReferenceRegister">
<summary>
Register reference
</summary>
</member>
<member name="F:Syncfusion.Office.VbaReferenceType.ReferenceProject">
<summary>
Project reference
</summary>
</member>
<member name="T:Syncfusion.Office.IVbaModule">
<summary>
Interface for using Vba project module
</summary>
</member>
<member name="P:Syncfusion.Office.IVbaModule.Name">
<summary>
Specifies the Vba module name
</summary>
</member>
<member name="P:Syncfusion.Office.IVbaModule.Type">
<summary>
Indicates the Vba module type.
</summary>
</member>
<member name="P:Syncfusion.Office.IVbaModule.Code">
<summary>
Specifies the Vba code for the module
</summary>
</member>
<member name="P:Syncfusion.Office.IVbaModule.DesignerStorage">
<summary>
Specifies the Vba project Form module designer.
</summary>
</member>
<member name="M:Syncfusion.Office.IVbaModules.Add(System.String,Syncfusion.Office.VbaModuleType)">
<summary>
Add a Vba module to the Vba project module collection
</summary>
<param name="name">Name</param>
<param name="type">Type</param>
<returns></returns>
</member>
<member name="M:Syncfusion.Office.IVbaModules.Remove(System.String)">
<summary>
Removes a Vba module with the specified name
</summary>
<param name="name">Name</param>
</member>
<member name="M:Syncfusion.Office.IVbaModules.RemoveAt(System.Int32)">
<summary>
Removes a Vba module at the specified index.
</summary>
<param name="index">Index</param>
</member>
<member name="M:Syncfusion.Office.IVbaModules.Clear">
<summary>
Clears Vba Module Collection
</summary>
</member>
<member name="P:Syncfusion.Office.IVbaModules.Count">
<summary>
Specifies the number of Vba modules in the collection.
</summary>
</member>
<member name="P:Syncfusion.Office.IVbaModules.Item(System.Int32)">
<summary>
Get the Vba module at the specified index.
</summary>
<param name="index">Index</param>
<returns>Vba Module</returns>
</member>
<member name="P:Syncfusion.Office.IVbaModules.Item(System.String)">
<summary>
Get the Vba module with the specified name.
</summary>
<param name="index">Name</param>
<returns>Vba Module</returns>
</member>
<member name="T:Syncfusion.Office.IVbaProject">
<summary>
Interface used for Vba project in the workbook.
</summary>
</member>
<member name="P:Syncfusion.Office.IVbaProject.Name">
<summary>
Specifies the Vba project name.
</summary>
</member>
<member name="P:Syncfusion.Office.IVbaProject.Description">
<summary>
Specifies the Vba project description details.
</summary>
</member>
<member name="P:Syncfusion.Office.IVbaProject.Constants">
<summary>
Specifies the vba project contants.
</summary>
</member>
<member name="P:Syncfusion.Office.IVbaProject.HelpFile">
<summary>
Specifies the path of the Help file.
</summary>
</member>
<member name="P:Syncfusion.Office.IVbaProject.HelpContextId">
<summary>
Indicates the help context id in the help file.
</summary>
</member>
<member name="P:Syncfusion.Office.IVbaProject.Modules">
<summary>
Contains the Vba project module collection.
</summary>
</member>
<member name="T:Syncfusion.Office.MetaProperty">
<summary>
Represents a single property in a collection of properties describing the metadata stored in a document.
</summary>
</member>
<member name="M:Syncfusion.Office.MetaProperty.MapContentTypeProperties(System.String,System.String,System.String,System.String,System.String,System.Object,Syncfusion.Office.MetaProperty)">
<summary>
Map the content type meta data properties.
</summary>
<param name="id"></param>
<param name="nillable"></param>
<param name="isreadonly"></param>
<param name="displayName"></param>
<param name="type"></param>
<param name="value"></param>
<param name="metaProperty"></param>
</member>
<member name="M:Syncfusion.Office.MetaProperty.ParseMetaProperty(System.Xml.XmlNodeList,System.String,System.Object,Syncfusion.Office.MetaProperty)">
<summary>
Parse the meta data property value.
</summary>
<param name="nodes"></param>
<param name="id"></param>
<param name="value"></param>
<param name="property"></param>
</member>
<member name="M:Syncfusion.Office.MetaProperty.ParseMetaProperty(System.Xml.XmlElement,System.Xml.XmlDocument)">
<summary>
Parse meta properties from contentTypeSchema.
</summary>
<param name="contentTypeSchema"></param>
<param name="contentTypeSchemaProperties"></param>
</member>
<member name="M:Syncfusion.Office.MetaProperty.ChecksValidMetaValue(System.Object@)">
<summary>
Checks whether the user setting value is valid or not.
</summary>
<param name="value"></param>
<returns></returns>
</member>
<member name="M:Syncfusion.Office.MetaProperty.GetValueAsPerMetaPropertyType(Syncfusion.Office.MetaPropertyType,System.Object)">
<summary>
Gets the proper value based on the metaproperty data type.
</summary>
<param name="type"></param>
<param name="value"></param>
<returns></returns>
</member>
<member name="M:Syncfusion.Office.MetaProperty.SetValueInXmlDocument">
<summary>
Set value to the XmlDocument element after changing of the MetaProperty data.
</summary>
</member>
<member name="M:Syncfusion.Office.MetaProperty.ValidateBooleanMetaType(System.Object@)">
<summary>
Validate the value of boolean metaproperty type.
</summary>
<param name="value"></param>
<returns></returns>
</member>
<member name="M:Syncfusion.Office.MetaProperty.ValidateLookupMetaType(System.Object@)">
<summary>
Validate the value of lookup metaproperty type.
</summary>
<param name="value"></param>
<returns></returns>
</member>
<member name="M:Syncfusion.Office.MetaProperty.ValidateUserMetaType(System.Object@)">
<summary>
Validate the value of user metaproperty type.
</summary>
<param name="value"></param>
<returns></returns>
</member>
<member name="M:Syncfusion.Office.MetaProperty.ValidateUrlMetaType(System.Object@)">
<summary>
Validate the value of url metaproperty type.
</summary>
<param name="value"></param>
<returns></returns>
</member>
<member name="M:Syncfusion.Office.MetaProperty.ValidateDateTimeMetaType(System.Object@)">
<summary>
Validate the value of datetime metaproperty type.
</summary>
<param name="value"></param>
<returns></returns>
</member>
<member name="M:Syncfusion.Office.MetaProperty.ValidateNumberAndCurrencyMetaType(System.Object@)">
<summary>
Validate the value of number and currency metaproperty type.
</summary>
<param name="value"></param>
<returns></returns>
</member>
<member name="M:Syncfusion.Office.MetaProperty.ValidateTextNoteChoiceUnknownMetaType(System.Object@)">
<summary>
Validate the value of text,note,choice,unknown metaproperty type.
</summary>
<param name="value"></param>
<returns></returns>
</member>
<member name="P:Syncfusion.Office.MetaProperty.Id">
<summary>
Gets the ID of the MetaProperty object.
</summary>
</member>
<member name="P:Syncfusion.Office.MetaProperty.IsReadOnly">
<summary>
Gets a Boolean value that specifies whether the meta property is read-only
</summary>
</member>
<member name="P:Syncfusion.Office.MetaProperty.IsRequired">
<summary>
Gets a Boolean value that specifies whether the meta property is required.
</summary>
</member>
<member name="P:Syncfusion.Office.MetaProperty.DisplayName">
<summary>
Gets the name of the MetaProperty object.
</summary>
</member>
<member name="P:Syncfusion.Office.MetaProperty.Type">
<summary>
Gets the data type of the MetaProperty object.
</summary>
</member>
<member name="P:Syncfusion.Office.MetaProperty.Value">
<summary>
Gets or sets the value of metadata property.
</summary>
</member>
<member name="P:Syncfusion.Office.MetaProperty.Parent">
<summary>
Gets the owner of the MetaProperty.
</summary>
<value>The <see cref="T:Syncfusion.Office.MetaProperties"/> that specifies the owner.</value>
</member>
<member name="T:Syncfusion.Office.ReferenceControlRecord">
<summary>
Control reference record.
</summary>
</member>
<member name="T:Syncfusion.Office.ReferenceRecord">
<summary>
Vba reference record
</summary>
</member>
<member name="M:Syncfusion.Office.ReferenceRecord.ParseRecord(System.IO.Stream)">
<summary>
Parse reference record.
</summary>
<param name="dirData"></param>
</member>
<member name="M:Syncfusion.Office.ReferenceRecord.SerializeRecord(System.IO.Stream)">
<summary>
Serialize reference record.
</summary>
<param name="dirData"></param>
</member>
<member name="M:Syncfusion.Office.ReferenceRecord.Clone">
<summary>
Clone.
</summary>
</member>
<member name="P:Syncfusion.Office.ReferenceRecord.Name">
<summary>
Reference name
</summary>
</member>
<member name="P:Syncfusion.Office.ReferenceRecord.EncodingType">
<summary>
Reference encoding type
</summary>
</member>
<member name="F:Syncfusion.Office.ReferenceControlRecord.m_Id">
<summary>
Id
</summary>
</member>
<member name="F:Syncfusion.Office.ReferenceControlRecord.m_libTwiddled">
<summary>
Libid twiddled
</summary>
</member>
<member name="F:Syncfusion.Office.ReferenceControlRecord.m_extLibid">
<summary>
Extended Libid
</summary>
</member>
<member name="F:Syncfusion.Office.ReferenceControlRecord.m_originalType">
<summary>
Original
</summary>
</member>
<member name="F:Syncfusion.Office.ReferenceControlRecord.m_cookie">
<summary>
Cookie
</summary>
</member>
<member name="F:Syncfusion.Office.ReferenceControlRecord.m_name">
<summary>
Reference name
</summary>
</member>
<member name="F:Syncfusion.Office.ReferenceControlRecord.m_type">
<summary>
Encoding type
</summary>
</member>
<member name="M:Syncfusion.Office.ReferenceControlRecord.ParseRecord(System.IO.Stream)">
<summary>
Parses Control Reference.
</summary>
<param name="dirData">Dir Stream</param>
</member>
<member name="M:Syncfusion.Office.ReferenceControlRecord.SerializeRecord(System.IO.Stream)">
<summary>
Serializes Control reference
</summary>
<param name="dirData">Dir Stream</param>
</member>
<member name="P:Syncfusion.Office.ReferenceControlRecord.Id">
<summary>
Id
</summary>
</member>
<member name="P:Syncfusion.Office.ReferenceControlRecord.LibTwiddled">
<summary>
Libid Twiddled
</summary>
</member>
<member name="P:Syncfusion.Office.ReferenceControlRecord.ExtLibId">
<summary>
Extended Libid
</summary>
</member>
<member name="P:Syncfusion.Office.ReferenceControlRecord.OriginalType">
<summary>
Original
</summary>
</member>
<member name="P:Syncfusion.Office.ReferenceControlRecord.Cookie">
<summary>
Cookie value
</summary>
</member>
<member name="P:Syncfusion.Office.ReferenceControlRecord.Name">
<summary>
Reference name
</summary>
</member>
<member name="P:Syncfusion.Office.ReferenceControlRecord.EncodingType">
<summary>
Encoding Type
</summary>
</member>
<member name="T:Syncfusion.Office.ReferenceOriginalRecord">
<summary>
Original Reference record
</summary>
</member>
<member name="F:Syncfusion.Office.ReferenceOriginalRecord.m_Id">
<summary>
ID
</summary>
</member>
<member name="F:Syncfusion.Office.ReferenceOriginalRecord.m_Libid">
<summary>
Libid
</summary>
</member>
<member name="F:Syncfusion.Office.ReferenceOriginalRecord.m_type">
<summary>
Encoding type
</summary>
</member>
<member name="F:Syncfusion.Office.ReferenceOriginalRecord.m_name">
<summary>
Reference name
</summary>
</member>
<member name="M:Syncfusion.Office.ReferenceOriginalRecord.ParseRecord(System.IO.Stream)">
<summary>
Parses the original reference.
</summary>
<param name="dirData">Dir Stream</param>
</member>
<member name="M:Syncfusion.Office.ReferenceOriginalRecord.SerializeRecord(System.IO.Stream)">
<summary>
Serializes the original reference.
</summary>
<param name="dirData">Dir Stream</param>
</member>
<member name="P:Syncfusion.Office.ReferenceOriginalRecord.Id">
<summary>
Id
</summary>
</member>
<member name="P:Syncfusion.Office.ReferenceOriginalRecord.Libid">
<summary>
Libid value
</summary>
</member>
<member name="P:Syncfusion.Office.ReferenceOriginalRecord.Name">
<summary>
Reference name
</summary>
</member>
<member name="P:Syncfusion.Office.ReferenceOriginalRecord.EncodingType">
<summary>
Encoding type
</summary>
</member>
<member name="T:Syncfusion.Office.ReferenceProjectRecord">
<summary>
Project reference record
</summary>
</member>
<member name="F:Syncfusion.Office.ReferenceProjectRecord.m_Id">
<summary>
Id
</summary>
</member>
<member name="F:Syncfusion.Office.ReferenceProjectRecord.m_LibAbsolute">
<summary>
Libid Absolute
</summary>
</member>
<member name="F:Syncfusion.Office.ReferenceProjectRecord.m_LibRelative">
<summary>
Libid Relative
</summary>
</member>
<member name="F:Syncfusion.Office.ReferenceProjectRecord.m_MajorVersion">
<summary>
Major Version
</summary>
</member>
<member name="F:Syncfusion.Office.ReferenceProjectRecord.m_MinorVersion">
<summary>
Minor Version
</summary>
</member>
<member name="F:Syncfusion.Office.ReferenceProjectRecord.m_type">
<summary>
Encoding type
</summary>
</member>
<member name="F:Syncfusion.Office.ReferenceProjectRecord.m_name">
<summary>
Reference name
</summary>
</member>
<member name="M:Syncfusion.Office.ReferenceProjectRecord.ParseRecord(System.IO.Stream)">
<summary>
Parses the Project reference record.
</summary>
<param name="dirData">Dir stream</param>
</member>
<member name="M:Syncfusion.Office.ReferenceProjectRecord.SerializeRecord(System.IO.Stream)">
<summary>
Serializes the project reference record.
</summary>
<param name="dirData">Dir Stream</param>
</member>
<member name="P:Syncfusion.Office.ReferenceProjectRecord.Id">
<summary>
Id
</summary>
</member>
<member name="P:Syncfusion.Office.ReferenceProjectRecord.LibAbsolute">
<summary>
Libid Absolute
</summary>
</member>
<member name="P:Syncfusion.Office.ReferenceProjectRecord.LibRelative">
<summary>
Libid Relative
</summary>
</member>
<member name="P:Syncfusion.Office.ReferenceProjectRecord.MajorVersion">
<summary>
Major version of project
</summary>
</member>
<member name="P:Syncfusion.Office.ReferenceProjectRecord.MinorVersion">
<summary>
Minor version of Project
</summary>
</member>
<member name="P:Syncfusion.Office.ReferenceProjectRecord.Name">
<summary>
Reference Name
</summary>
</member>
<member name="P:Syncfusion.Office.ReferenceProjectRecord.EncodingType">
<summary>
Encoding Type
</summary>
</member>
<member name="T:Syncfusion.Office.ReferenceRecordsCollection">
<summary>
Reference Records Collection
</summary>
</member>
<member name="F:Syncfusion.Office.ReferenceRecordsCollection.m_parent">
<summary>
Parent Vba Project
</summary>
</member>
<member name="M:Syncfusion.Office.ReferenceRecordsCollection.Add(Syncfusion.Office.VbaReferenceType)">
<summary>
Add a reference with the specified type.
</summary>
<param name="type">Reference type</param>
<returns>Reference</returns>
</member>
<member name="M:Syncfusion.Office.ReferenceRecordsCollection.Dispose">
<summary>
Dispose
</summary>
</member>
<member name="M:Syncfusion.Office.ReferenceRecordsCollection.Clone(Syncfusion.Office.VbaProject)">
<summary>
Clone
</summary>
<returns>Vba reference collection</returns>
</member>
<member name="T:Syncfusion.Office.ReferenceRegisterRecord">
<summary>
Register reference record.
</summary>
</member>
<member name="F:Syncfusion.Office.ReferenceRegisterRecord.m_Id">
<summary>
Id
</summary>
</member>
<member name="F:Syncfusion.Office.ReferenceRegisterRecord.m_Libid">
<summary>
Libid
</summary>
</member>
<member name="F:Syncfusion.Office.ReferenceRegisterRecord.m_name">
<summary>
Reference name
</summary>
</member>
<member name="F:Syncfusion.Office.ReferenceRegisterRecord.m_type">
<summary>
Encoding type
</summary>
</member>
<member name="M:Syncfusion.Office.ReferenceRegisterRecord.ParseRecord(System.IO.Stream)">
<summary>
Parses register reference.
</summary>
<param name="dirData">Dir Stream</param>
</member>
<member name="M:Syncfusion.Office.ReferenceRegisterRecord.SerializeRecord(System.IO.Stream)">
<summary>
Serializes register reference.
</summary>
<param name="dirData">Dir Stream</param>
</member>
<member name="P:Syncfusion.Office.ReferenceRegisterRecord.Id">
<summary>
Id
</summary>
</member>
<member name="P:Syncfusion.Office.ReferenceRegisterRecord.Libid">
<summary>
Libid
</summary>
</member>
<member name="P:Syncfusion.Office.ReferenceRegisterRecord.Name">
<summary>
Reference name
</summary>
</member>
<member name="P:Syncfusion.Office.ReferenceRegisterRecord.EncodingType">
<summary>
Encoding type
</summary>
</member>
<member name="T:Syncfusion.Office.VbaAttribute">
<summary>
Vba attribute
</summary>
</member>
<member name="F:Syncfusion.Office.VbaAttribute.m_name">
<summary>
Name
</summary>
</member>
<member name="F:Syncfusion.Office.VbaAttribute.m_value">
<summary>
Value
</summary>
</member>
<member name="F:Syncfusion.Office.VbaAttribute.m_isText">
<summary>
Indicates whether the value is string type
</summary>
</member>
<member name="M:Syncfusion.Office.VbaAttribute.Clone">
<summary>
Clone
</summary>
<returns>VbaAttribute</returns>
</member>
<member name="P:Syncfusion.Office.VbaAttribute.Name">
<summary>
Specifies the name of the attribute
</summary>
</member>
<member name="P:Syncfusion.Office.VbaAttribute.Value">
<summary>
Specifies the value for a attribute
</summary>
</member>
<member name="P:Syncfusion.Office.VbaAttribute.IsText">
<summary>
Indicates whether the attribute value is string.
</summary>
</member>
<member name="T:Syncfusion.Office.VbaAttributesCollection">
<summary>
Vba attribute collection
</summary>
</member>
<member name="F:Syncfusion.Office.VbaAttributesCollection.m_module">
<summary>
Parent Vba Module
</summary>
</member>
<member name="M:Syncfusion.Office.VbaAttributesCollection.#ctor(Syncfusion.Office.VbaModule)">
<summary>
Initializes a Vba Attribute
</summary>
<param name="module"></param>
</member>
<member name="M:Syncfusion.Office.VbaAttributesCollection.AddAttribute(System.String,System.String,System.Boolean)">
<summary>
Add a attribute to the collection
</summary>
<param name="name">Name of the attribute</param>
<param name="value">Value of the attribute</param>
<param name="isText">Indicates whether the value is a text</param>
<returns></returns>
</member>
<member name="M:Syncfusion.Office.VbaAttributesCollection.Clone(Syncfusion.Office.VbaModule)">
<summary>
Clone
</summary>
<returns></returns>
</member>
<member name="P:Syncfusion.Office.VbaAttributesCollection.Item(System.String)">
<summary>
Gets the attribute with the specified name
</summary>
<param name="name">Name of the attribute</param>
<returns>Vba Attribute</returns>
</member>
<member name="T:Syncfusion.Office.VbaDataProcess">
<summary>
Vba data process
</summary>
</member>
<member name="M:Syncfusion.Office.VbaDataProcess.Compress(System.IO.Stream)">
<summary>
Compression a data using Vba Compression algorithm
</summary>
<param name="compressed">DeCompressed data</param>
<returns>Compressed data</returns>
</member>
<member name="M:Syncfusion.Office.VbaDataProcess.Decompress(System.IO.Stream)">
<summary>
Decompression a data using Vba decompression algorithm
</summary>
<param name="compressed">Compressed data</param>
<returns>Decompressed data</returns>
</member>
<member name="M:Syncfusion.Office.VbaDataProcess.Decrypt(System.Byte[])">
<summary>
Decrypting a data using Vba decryption
</summary>
<param name="data">Encrypted data</param>
<returns>Decrypted data</returns>
</member>
<member name="M:Syncfusion.Office.VbaDataProcess.Encrypt(System.Byte[],System.String)">
<summary>
Erypting a data using Vba Encryption
</summary>
<param name="data">Decrypted data</param>
<returns>Encrypted data</returns>
</member>
<member name="T:Syncfusion.Office.VbaModule">
<summary>
Vba Module base
</summary>
</member>
<member name="F:Syncfusion.Office.VbaModule.m_name">
<summary>
Specifies the name of the module.
</summary>
</member>
<member name="F:Syncfusion.Office.VbaModule.m_description">
<summary>
Module description
</summary>
</member>
<member name="F:Syncfusion.Office.VbaModule.m_streamName">
<summary>
Module stream name
</summary>
</member>
<member name="F:Syncfusion.Office.VbaModule.m_offSet">
<summary>
Module offset
</summary>
</member>
<member name="F:Syncfusion.Office.VbaModule.m_helpTopic">
<summary>
Help context id
</summary>
</member>
<member name="F:Syncfusion.Office.VbaModule.m_attributeCollection">
<summary>
Vba attributes collection
</summary>
</member>
<member name="F:Syncfusion.Office.VbaModule.m_designerStorage">
<summary>
Designer storage
</summary>
</member>
<member name="F:Syncfusion.Office.VbaModule.m_packages">
<summary>
Designer packages.
</summary>
</member>
<member name="F:Syncfusion.Office.VbaModule.m_type">
<summary>
Vba module type.
</summary>
</member>
<member name="F:Syncfusion.Office.VbaModule.m_code">
<summary>
Vb Program code.
</summary>
</member>
<member name="F:Syncfusion.Office.VbaModule.m_vbaModules">
<summary>
Vba Module collection
</summary>
</member>
<member name="M:Syncfusion.Office.VbaModule.#ctor(Syncfusion.Office.VbaModulesCollection)">
<summary>
Instantiate a Vba Module
</summary>
<param name="m_vbaModules"></param>
</member>
<member name="M:Syncfusion.Office.VbaModule.InitializeAttributes(System.String,System.String)">
<summary>
Initializes Vba attributes collection.
</summary>
<param name="name">module name</param>
<param name="clsID">Class Id</param>
<returns>Attributes collection</returns>
</member>
<member name="M:Syncfusion.Office.VbaModule.ParseModuleRecord(System.IO.Stream)">
<summary>
Parses Vba module.
</summary>
<param name="moduleStream">Module stream</param>
</member>
<member name="M:Syncfusion.Office.VbaModule.SerializeModuleRecord(System.IO.Stream)">
<summary>
Serializes module record
</summary>
<param name="dirStream"></param>
</member>
<member name="M:Syncfusion.Office.VbaModule.Dispose">
<summary>
Dispose
</summary>
</member>
<member name="E:Syncfusion.Office.VbaModule.CodeNameChanged">
<summary>
Name changing event hanler.
</summary>
</member>
<member name="P:Syncfusion.Office.VbaModule.Name">
<summary>
Specifies the module name
</summary>
</member>
<member name="P:Syncfusion.Office.VbaModule.Type">
<summary>
Indicates the module type.
</summary>
</member>
<member name="P:Syncfusion.Office.VbaModule.Code">
<summary>
Specifies the Vba code for the module
</summary>
</member>
<member name="P:Syncfusion.Office.VbaModule.HelpTopicId">
<summary>
Help context id
</summary>
</member>
<member name="P:Syncfusion.Office.VbaModule.Description">
<summary>
Specifies the project description.
</summary>
</member>
<member name="P:Syncfusion.Office.VbaModule.StreamName">
<summary>
Specifies the module stream name.
</summary>
</member>
<member name="P:Syncfusion.Office.VbaModule.ModuleOffSet">
<summary>
Indicates the starting position of the data in the module stream
</summary>
</member>
<member name="P:Syncfusion.Office.VbaModule.Attributes">
<summary>
Vba code attributes
</summary>
</member>
<member name="P:Syncfusion.Office.VbaModule.DesignerStorage">
<summary>
Designer storage
</summary>
</member>
<member name="P:Syncfusion.Office.VbaModule.Package">
<summary>
Designer module package
</summary>
</member>
<member name="T:Syncfusion.Office.NameChangedEventHandler">
<summary>
Name change event handler
</summary>
<param name="sender">sender</param>
<param name="name">new name</param>
</member>
<member name="F:Syncfusion.Office.VbaModulesCollection.m_project">
<summary>
VbaProject object
</summary>
</member>
<member name="M:Syncfusion.Office.VbaModulesCollection.#ctor(Syncfusion.Office.VbaProject)">
<summary>
Initializes a Vba module collection.
</summary>
<param name="project">Vba Project</param>
</member>
<member name="M:Syncfusion.Office.VbaModulesCollection.Add(System.String,Syncfusion.Office.VbaModuleType)">
<summary>
Add a Vba module to the Vba project module collection
</summary>
<param name="name">Name</param>
<param name="type">Type</param>
<returns></returns>
</member>
<member name="M:Syncfusion.Office.VbaModulesCollection.Remove(System.String)">
<summary>
Removes a Vba module with the specified name
</summary>
<param name="name">Name</param>
</member>
<member name="M:Syncfusion.Office.VbaModulesCollection.Dispose">
<summary>
Dispose
</summary>
</member>
<member name="M:Syncfusion.Office.VbaModulesCollection.Clone(Syncfusion.Office.VbaProject)">
<summary>
Clone Vba Modules Collection
</summary>
<param name="parent">Parent</param>
<returns>Vba Modules</returns>
</member>
<member name="P:Syncfusion.Office.VbaModulesCollection.Project">
<summary>
Parent Vba project
</summary>
</member>
<member name="P:Syncfusion.Office.VbaModulesCollection.Item(System.String)">
<summary>
Get the Vba module with the specified name
</summary>
<param name="name">Name</param>
<returns>Vba Module</returns>
</member>
<member name="P:Syncfusion.Office.VbaModulesCollection.Item(System.Int32)">
<summary>
Get the Vba module at the specified index.
</summary>
<param name="index">Index</param>
<returns>Vba Module</returns>
</member>
<member name="T:Syncfusion.Office.VbaProject">
<summary>
Vba project base
</summary>
</member>
<member name="F:Syncfusion.Office.VbaProject.m_modules">
<summary>
Vba modules collection.
</summary>
</member>
<member name="F:Syncfusion.Office.VbaProject.m_references">
<summary>
Vba project references.
</summary>
</member>
<member name="F:Syncfusion.Office.VbaProject.m_parent">
<summary>
Parent
</summary>
</member>
<member name="F:Syncfusion.Office.VbaProject.m_kind">
<summary>
System Kind
</summary>
</member>
<member name="F:Syncfusion.Office.VbaProject.m_name">
<summary>
Vba project name.
</summary>
</member>
<member name="F:Syncfusion.Office.VbaProject.m_description">
<summary>
Project description.
</summary>
</member>
<member name="F:Syncfusion.Office.VbaProject.m_password">
<summary>
Password
</summary>
</member>
<member name="F:Syncfusion.Office.VbaProject.m_constants">
<summary>
Project constants.
</summary>
</member>
<member name="F:Syncfusion.Office.VbaProject.m_IsViewLocked">
<summary>
Indicates whether to lock the project view
</summary>
</member>
<member name="F:Syncfusion.Office.VbaProject.m_helpFile1">
<summary>
Primary Help File
</summary>
</member>
<member name="F:Syncfusion.Office.VbaProject.m_helpFile2">
<summary>
Secondary help file.
</summary>
</member>
<member name="F:Syncfusion.Office.VbaProject.m_helpTopic">
<summary>
Help topic context id;
</summary>
</member>
<member name="F:Syncfusion.Office.VbaProject.m_lcId">
<summary>
LCID
</summary>
</member>
<member name="F:Syncfusion.Office.VbaProject.m_lcInvoke">
<summary>
LCInvoke
</summary>
</member>
<member name="F:Syncfusion.Office.VbaProject.m_codePage">
<summary>
Code page of the project
</summary>
</member>
<member name="F:Syncfusion.Office.VbaProject.m_majorVersion">
<summary>
Major version
</summary>
</member>
<member name="F:Syncfusion.Office.VbaProject.m_minorVersion">
<summary>
Minor version
</summary>
</member>
<member name="F:Syncfusion.Office.VbaProject.m_clsID">
<summary>
Project Class Id
</summary>
</member>
<member name="F:Syncfusion.Office.VbaProject.m_protectionData">
<summary>
Data preserved for protection.
</summary>
</member>
<member name="F:Syncfusion.Office.VbaProject.m_passwordData">
<summary>
Data preserved for password
</summary>
</member>
<member name="F:Syncfusion.Office.VbaProject.m_lockviewData">
<summary>
Data preserved for lock view.
</summary>
</member>
<member name="M:Syncfusion.Office.VbaProject.#ctor(System.Object)">
<summary>
Initializes the Vba Project.
</summary>
</member>
<member name="M:Syncfusion.Office.VbaProject.ParseDirStream(System.IO.Stream)">
<summary>
Parse Dir Stream
</summary>
<param name="dirStream">Stream</param>
</member>
<member name="M:Syncfusion.Office.VbaProject.ParseModuleStream(System.IO.Stream,Syncfusion.Office.VbaModule)">
<summary>
Parse Module Stream
</summary>
<param name="storage"></param>
</member>
<member name="M:Syncfusion.Office.VbaProject.ParseProjectStream(System.IO.Stream)">
<summary>
Parse Project stream
</summary>
<param name="rootStorage">Vba root storage</param>
</member>
<member name="M:Syncfusion.Office.VbaProject.ParseProjectInfo(System.IO.Stream)">
<summary>
Parse project properties.
</summary>
<param name="dirData">Dir stream</param>
</member>
<member name="M:Syncfusion.Office.VbaProject.ParseReferences(System.IO.Stream)">
<summary>
Parse project references
</summary>
<param name="dirData">Dir stream</param>
</member>
<member name="M:Syncfusion.Office.VbaProject.SerializeVbaStream(System.IO.Stream)">
<summary>
Creates Vba Project stream
</summary>
<param name="vbaRootStorage">Root storage</param>
</member>
<member name="M:Syncfusion.Office.VbaProject.SerializeDirStream(System.IO.Stream)">
<summary>
Creates Dir stream
</summary>
</member>
<member name="M:Syncfusion.Office.VbaProject.SerializeProjectInfo(System.IO.Stream)">
<summary>
Writes project properties into Dir stream
</summary>
<param name="dirStream">Dir stream</param>
</member>
<member name="M:Syncfusion.Office.VbaProject.SerializeReferences(System.IO.Stream)">
<summary>
Serialize refereces
</summary>
<param name="stream">Dir stream</param>
</member>
<member name="M:Syncfusion.Office.VbaProject.SerializeModules(System.IO.Stream)">
<summary>
Serialize modules
</summary>
<param name="stream">Die Stream</param>
</member>
<member name="M:Syncfusion.Office.VbaProject.SerializeModuleStream(Syncfusion.Office.VbaModule,System.IO.Stream)">
<summary>
Creates module stream
</summary>
</member>
<member name="M:Syncfusion.Office.VbaProject.SerializeProjectStream(System.IO.Stream)">
<summary>
Creates project stream.
</summary>
<param name="vbaRootStorage">Root storage</param>
</member>
<member name="M:Syncfusion.Office.VbaProject.SerializeProjectWmStream(System.IO.Stream)">
<summary>
Creates project wm stream
</summary>
<param name="vbaRootStorage">Root storage</param>
</member>
<member name="M:Syncfusion.Office.VbaProject.ConvertHexString(System.String)">
<summary>
Converts Hex string into byte array
</summary>
<param name="value">Hex value</param>
<returns>byte array</returns>
</member>
<member name="M:Syncfusion.Office.VbaProject.ConvertByteArray(System.Byte[])">
<summary>
Converts the byte array into Hex string
</summary>
<param name="value">byte array</param>
<returns>Hex value</returns>
</member>
<member name="M:Syncfusion.Office.VbaProject.ReadUInt32(System.IO.Stream)">
<summary>
Extracts UInt32 value from the stream.
</summary>
<param name="stream">Stream to read data from.</param>
<returns>Extracted value.</returns>
</member>
<member name="M:Syncfusion.Office.VbaProject.ReadInt16(System.IO.Stream)">
<summary>
Extracts UInt16 value from the stream.
</summary>
<param name="stream">Stream to read data from.</param>
<returns>Extracted value.</returns>
</member>
<member name="M:Syncfusion.Office.VbaProject.ReadUInt16(System.IO.Stream)">
<summary>
Extracts unsigned UInt16 value from the stream.
</summary>
<param name="stream">Stream to read data from.</param>
<returns>Extracted value.</returns>
</member>
<member name="M:Syncfusion.Office.VbaProject.Dispose">
<summary>
Dispose
</summary>
</member>
<member name="M:Syncfusion.Office.VbaProject.Clone(System.Object)">
<summary>
Clone
</summary>
<returns>Vba Project Base</returns>
</member>
<member name="P:Syncfusion.Office.VbaProject.SystemType">
<summary>
Specifies the type of System that the Vba project created.
</summary>
</member>
<member name="P:Syncfusion.Office.VbaProject.Name">
<summary>
Specifies the Vba project name.
</summary>
</member>
<member name="P:Syncfusion.Office.VbaProject.Description">
<summary>
Specifies the Vba project description details.
</summary>
</member>
<member name="P:Syncfusion.Office.VbaProject.Password">
<summary>
Specifies the password for the Vba project.
</summary>
</member>
<member name="P:Syncfusion.Office.VbaProject.Constants">
<summary>
Specifies the vba project contants.
</summary>
</member>
<member name="P:Syncfusion.Office.VbaProject.LockView">
<summary>
Indicates whether to lock the project view.
</summary>
</member>
<member name="P:Syncfusion.Office.VbaProject.HelpFile">
<summary>
Specifies the path of the Help file.
</summary>
</member>
<member name="P:Syncfusion.Office.VbaProject.SecondaryHelpFile">
<summary>
Specifies the secondary help file.
</summary>
</member>
<member name="P:Syncfusion.Office.VbaProject.HelpContextId">
<summary>
Indicates the help context id in the help file.
</summary>
</member>
<member name="P:Syncfusion.Office.VbaProject.LcId">
<summary>
LCID of the project.
</summary>
</member>
<member name="P:Syncfusion.Office.VbaProject.LcInvoke">
<summary>
LC Invoke
</summary>
</member>
<member name="P:Syncfusion.Office.VbaProject.CodePage">
<summary>
Specifies the code page no of the Encoding used in the Vba project.
</summary>
</member>
<member name="P:Syncfusion.Office.VbaProject.MajorVersion">
<summary>
Major version
</summary>
</member>
<member name="P:Syncfusion.Office.VbaProject.MinorVersion">
<summary>
Minor version
</summary>
</member>
<member name="P:Syncfusion.Office.VbaProject.EncodingType">
<summary>
Encoding used in the Vba project.
</summary>
</member>
<member name="P:Syncfusion.Office.VbaProject.ProjectCLSID">
<summary>
Vba project Class Id
</summary>
</member>
<member name="P:Syncfusion.Office.VbaProject.Modules">
<summary>
Contains the Vba project module collection.
</summary>
</member>
<member name="P:Syncfusion.Office.VbaProject.References">
<summary>
Contains the Vba project references.
</summary>
</member>
<member name="T:Syncfusion.Compression.Zip.BeginsWithNamePreprocessor">
<summary>
Implemenation of IFileNamePreprocessor interface that simply removes
some string from the name start and converts all \ characters into /.
</summary>
</member>
<member name="T:Syncfusion.Compression.Zip.IFileNamePreprocessor">
<summary>
Preprocesses file name before ZipArchiveItem saving. Used to convert full item path into local one.
</summary>
</member>
<member name="M:Syncfusion.Compression.Zip.IFileNamePreprocessor.PreprocessName(System.String)">
<summary>
Somehow converts full path into name that will be stored in the zip archive.
</summary>
<param name="fullName">Name to process.</param>
<returns>Converted name.</returns>
</member>
<member name="F:Syncfusion.Compression.Zip.BeginsWithNamePreprocessor.m_strStartToRemove">
<summary>
String to remove from the name start.
</summary>
</member>
<member name="M:Syncfusion.Compression.Zip.BeginsWithNamePreprocessor.#ctor(System.String)">
<summary>
Initializes new instance of the name preprocessor.
</summary>
<param name="startToRemove">String to remove from the name start.</param>
</member>
<member name="M:Syncfusion.Compression.Zip.BeginsWithNamePreprocessor.PreprocessName(System.String)">
<summary>
Somehow converts full path into name that will be stored in the zip archive.
</summary>
<param name="fullName">Name to process.</param>
<returns>Converted name.</returns>
</member>
<member name="T:Syncfusion.Compression.Zip.Constants">
<summary>
Class contains all constants that are required by ZipArchive.
</summary>
</member>
<member name="F:Syncfusion.Compression.Zip.Constants.HeaderSignature">
<summary>
Zip header signature.
</summary>
</member>
<member name="F:Syncfusion.Compression.Zip.Constants.HeaderSignatureBytes">
<summary>
Number of bytes in HeaderSignature constant.
</summary>
</member>
<member name="F:Syncfusion.Compression.Zip.Constants.BufferSize">
<summary>
Buffer size.
</summary>
</member>
<member name="F:Syncfusion.Compression.Zip.Constants.VersionNeededToExtract">
<summary>
Version needed to extract.
</summary>
</member>
<member name="F:Syncfusion.Compression.Zip.Constants.VersionMadeBy">
<summary>
Version made by.
</summary>
</member>
<member name="F:Syncfusion.Compression.Zip.Constants.ShortSize">
<summary>
Size of the short value in bytes.
</summary>
</member>
<member name="F:Syncfusion.Compression.Zip.Constants.IntSize">
<summary>
Size of the int value in bytes.
</summary>
</member>
<member name="F:Syncfusion.Compression.Zip.Constants.CentralHeaderSignature">
<summary>
Central header signature.
</summary>
</member>
<member name="F:Syncfusion.Compression.Zip.Constants.CentralDirectoryEndSignature">
<summary>
End of central directory signature.
</summary>
</member>
<member name="F:Syncfusion.Compression.Zip.Constants.StartCrc">
<summary>
Initial value for CRC-32 evaluation.
</summary>
</member>
<member name="F:Syncfusion.Compression.Zip.Constants.CentralDirSizeOffset">
<summary>
Offset to the size field in the End of central directory record.
</summary>
</member>
<member name="F:Syncfusion.Compression.Zip.Constants.HeaderSignatureStartByteValue">
<summary>
Start byte of the Header signature.
</summary>
</member>
<member name="M:Syncfusion.Compression.Zip.Constants.#ctor">
<summary>
Default constructor to prevent users from creating instances of this class.
</summary>
</member>
<member name="T:Syncfusion.Compression.Zip.CompressionMethod">
<summary>
The kind of compression used for an entry in an archive
</summary>
</member>
<member name="F:Syncfusion.Compression.Zip.CompressionMethod.Stored">
<summary>
The file is stored (no compression).
</summary>
</member>
<member name="F:Syncfusion.Compression.Zip.CompressionMethod.Shrunk">
<summary>
The file is Shrunk.
</summary>
</member>
<member name="F:Syncfusion.Compression.Zip.CompressionMethod.ReducedFactor1">
<summary>
The file is Reduced with compression factor 1.
</summary>
</member>
<member name="F:Syncfusion.Compression.Zip.CompressionMethod.ReducedFactor2">
<summary>
The file is Reduced with compression factor 2.
</summary>
</member>
<member name="F:Syncfusion.Compression.Zip.CompressionMethod.ReducedFactor3">
<summary>
The file is Reduced with compression factor 3.
</summary>
</member>
<member name="F:Syncfusion.Compression.Zip.CompressionMethod.ReducedFactor4">
<summary>
The file is Reduced with compression factor 4.
</summary>
</member>
<member name="F:Syncfusion.Compression.Zip.CompressionMethod.Imploded">
<summary>
The file is Imploded.
</summary>
</member>
<member name="F:Syncfusion.Compression.Zip.CompressionMethod.Tokenizing">
<summary>
Reserved for Tokenizing compression algorithm.
</summary>
</member>
<member name="F:Syncfusion.Compression.Zip.CompressionMethod.Deflated">
<summary>
The file is Deflated.
</summary>
</member>
<member name="F:Syncfusion.Compression.Zip.CompressionMethod.Defalte64">
<summary>
Enhanced Deflating using Deflate64(tm).
</summary>
</member>
<member name="F:Syncfusion.Compression.Zip.CompressionMethod.PRWARE">
<summary>
PKWARE Data Compression Library Imploding (old IBM TERSE).
</summary>
</member>
<member name="F:Syncfusion.Compression.Zip.CompressionMethod.BZIP2">
<summary>
File is compressed using BZIP2 algorithm.
</summary>
</member>
<member name="F:Syncfusion.Compression.Zip.CompressionMethod.LZMA">
<summary>
LZMA (EFS).
</summary>
</member>
<member name="F:Syncfusion.Compression.Zip.CompressionMethod.IBMTerse">
<summary>
File is compressed using IBM TERSE (new).
</summary>
</member>
<member name="F:Syncfusion.Compression.Zip.CompressionMethod.LZ77">
<summary>
IBM LZ77 z Architecture (PFS).
</summary>
</member>
<member name="F:Syncfusion.Compression.Zip.CompressionMethod.PPMd">
<summary>
PPMd version I, Rev 1.
</summary>
</member>
<member name="T:Syncfusion.Compression.Zip.GeneralPurposeBitFlags">
<summary>
General purpose bit flag.
</summary>
</member>
<member name="F:Syncfusion.Compression.Zip.GeneralPurposeBitFlags.SizeAfterData">
<summary>
If this bit is set, the fields crc-32, compressed size and uncompressed
size are set to zero in the local header. The correct values are put
in the data descriptor immediately following the compressed data.
(Note: PKZIP version 2.04g for DOS only recognizes this bit for method 8
compression, newer versions of PKZIP recognize this bit for any compression method.)
</summary>
</member>
<member name="F:Syncfusion.Compression.Zip.GeneralPurposeBitFlags.Unicode">
<summary>
Language encoding flag (EFS). If this bit is set, the filename and
comment fields for this file must be encoded using UTF-8.
</summary>
</member>
<member name="T:Syncfusion.Compression.Zip.Aes">
<summary>
Class used for implementing Advanced Encryption Standard algorithm.
</summary>
</member>
<member name="F:Syncfusion.Compression.Zip.Aes.Nb">
<summary>
block size in 32-bit words. Always 4 for AES. (128 bits).
</summary>
</member>
<member name="F:Syncfusion.Compression.Zip.Aes.Nk">
<summary>
key size in 32-bit words. 4, 6, 8. (128, 192, 256 bits).
</summary>
</member>
<member name="F:Syncfusion.Compression.Zip.Aes.Nr">
<summary>
number of rounds. 10, 12, 14.
</summary>
</member>
<member name="F:Syncfusion.Compression.Zip.Aes.key">
<summary>
the seed key. size will be 4 * keySize .
</summary>
</member>
<member name="F:Syncfusion.Compression.Zip.Aes.Sbox">
<summary>
Substitution box
</summary>
</member>
<member name="F:Syncfusion.Compression.Zip.Aes.iSbox">
<summary>
inverse Substitution box
</summary>
</member>
<member name="F:Syncfusion.Compression.Zip.Aes.w">
<summary>
key schedule array.
</summary>
</member>
<member name="F:Syncfusion.Compression.Zip.Aes.Rcon">
<summary>
Round constants
</summary>
</member>
<member name="F:Syncfusion.Compression.Zip.Aes.State">
<summary>
State matrix
</summary>
</member>
<member name="F:Syncfusion.Compression.Zip.Aes.mKeySize">
<summary>
AES key size
</summary>
</member>
<member name="F:Syncfusion.Compression.Zip.Aes.m_salt">
<summary>
Salt value
</summary>
</member>
<member name="F:Syncfusion.Compression.Zip.Aes.m_macKey">
<summary>
Message Authentication Code Key
</summary>
</member>
<member name="F:Syncfusion.Compression.Zip.Aes.m_storedmac">
<summary>
Stored Message Authentication Code
</summary>
</member>
<member name="F:Syncfusion.Compression.Zip.Aes.m_compMac">
<summary>
Computed Message Authentication Code
</summary>
</member>
<member name="F:Syncfusion.Compression.Zip.Aes.m_encryptionKey">
<summary>
Encryption Key
</summary>
</member>
<member name="F:Syncfusion.Compression.Zip.Aes.m_passVer">
<summary>
Password verifier
</summary>
</member>
<member name="F:Syncfusion.Compression.Zip.Aes.m_password">
<summary>
Password
</summary>
</member>
<member name="F:Syncfusion.Compression.Zip.Aes.m_keyBytes">
<summary>
No of keyBytes
</summary>
</member>
<member name="F:Syncfusion.Compression.Zip.Aes.m_saltBytes">
<summary>
No of saltBytes
</summary>
</member>
<member name="M:Syncfusion.Compression.Zip.Aes.Initialize">
<summary>
Initiates Aes
</summary>
</member>
<member name="M:Syncfusion.Compression.Zip.Aes.SetKey(Syncfusion.Compression.Zip.Aes.KeySize,System.Byte[])">
<summary>
Initializes a new instance of the Aes class.
</summary>
<param name="keySize">Key size.</param>
<param name="keyBytes">Key bytes</param>
</member>
<member name="M:Syncfusion.Compression.Zip.Aes.Cipher(System.Byte[],System.Byte[])">
<summary>
Encipher 16 bit input
</summary>
<param name="input">16 bit Input</param>
<param name="output">Output value</param>
</member>
<member name="M:Syncfusion.Compression.Zip.Aes.InvCipher(System.Byte[],System.Byte[])">
<summary>
Decipher 16-bit input
</summary>
<param name="input"></param>
<param name="output"></param>
</member>
<member name="M:Syncfusion.Compression.Zip.Aes.SetNbNkNr(Syncfusion.Compression.Zip.Aes.KeySize)">
<summary>
SetNbNkNr()
</summary>
<param name="keySize">Keysize</param>
</member>
<member name="M:Syncfusion.Compression.Zip.Aes.BuildSbox">
<summary>
Building S-box
</summary>
</member>
<member name="M:Syncfusion.Compression.Zip.Aes.BuildInvSbox">
<summary>
Building Inverse S-box
</summary>
</member>
<member name="M:Syncfusion.Compression.Zip.Aes.BuildRcon">
<summary>
Builds Rotation array
</summary>
</member>
<member name="M:Syncfusion.Compression.Zip.Aes.AddRoundKey(System.Int32)">
<summary>
Adds rounf Key
</summary>
<param name="round">No of Rounds</param>
</member>
<member name="M:Syncfusion.Compression.Zip.Aes.SubBytes">
<summary>
SubBytes
</summary>
</member>
<member name="M:Syncfusion.Compression.Zip.Aes.InvSubBytes">
<summary>
InvSubBytes
</summary>
</member>
<member name="M:Syncfusion.Compression.Zip.Aes.ShiftRows">
<summary>
ShiftRows()
</summary>
</member>
<member name="M:Syncfusion.Compression.Zip.Aes.InvShiftRows">
<summary>
InvShiftRows()
</summary>
</member>
<member name="M:Syncfusion.Compression.Zip.Aes.MixColumns">
<summary>
MixColumns
</summary>
</member>
<member name="M:Syncfusion.Compression.Zip.Aes.InvMixColumns">
<summary>
InvMixColumns
</summary>
</member>
<member name="M:Syncfusion.Compression.Zip.Aes.KeyExpansion">
<summary>
Key Expansion
</summary>
</member>
<member name="M:Syncfusion.Compression.Zip.Aes.SubWord(System.Byte[])">
<summary>
Subword
</summary>
<param name="word">Word</param>
<returns>resulted word</returns>
</member>
<member name="M:Syncfusion.Compression.Zip.Aes.RotWord(System.Byte[])">
<summary>
Rotates word
</summary>
<param name="word">Input</param>
<returns>Result</returns>
</member>
<member name="M:Syncfusion.Compression.Zip.Aes.Dump">
<summary>
Dump
</summary>
</member>
<member name="M:Syncfusion.Compression.Zip.Aes.DumpKey">
<summary>
Dump key.
</summary>
<returns></returns>
</member>
<member name="M:Syncfusion.Compression.Zip.Aes.DumpTwoByTwo(System.Byte[0:,0:])">
<summary>
Dump two by two.
</summary>
<param name="a"></param>
<returns></returns>
</member>
<member name="M:Syncfusion.Compression.Zip.Aes.GenerateCryptographicKey">
<summary>
Generates a key for Encryption and Decryption
</summary>
</member>
<member name="M:Syncfusion.Compression.Zip.Aes.GenerateMAC(System.Byte[])">
<summary>
Generates Message Authentication Code
</summary>
<param name="data">data used for MAC</param>
</member>
<member name="M:Syncfusion.Compression.Zip.Aes.Compare(System.Byte[],System.Byte[])">
<summary>
Compares two bytes arrays
</summary>
<param name="input1">First byte array</param>
<param name="input2">Second byte array </param>
<returns>true if two arrays are same</returns>
</member>
<member name="M:Syncfusion.Compression.Zip.Aes.SetKeyBytes(Syncfusion.Compression.Zip.EncryptionAlgorithm)">
<summary>
Set key and salt lengths for AES key
</summary>
</member>
<member name="M:Syncfusion.Compression.Zip.Aes.Decrypt(System.Byte[])">
<summary>
Decrypt the cipherData
</summary>
<param name="cipherData">Encrypted data</param>
<returns>Decrypted</returns>
</member>
<member name="M:Syncfusion.Compression.Zip.Aes.Encrypt(System.Byte[])">
<summary>
Encrypt the plain data
</summary>
<param name="plainData">Data needs to be encrypted</param>
<returns>Encrypted data</returns>
</member>
<member name="M:Syncfusion.Compression.Zip.Aes.AesEncryptDecrypt(System.Byte[],System.Byte[])">
<summary>
Counter Mode Encryption
</summary>
<param name="input">Encrypted data</param>
<param name="output">Decrypted data to get </param>
<param name="aesKey">AES encryption Key</param>
<returns></returns>
</member>
<member name="T:Syncfusion.Compression.Zip.Aes.KeySize">
<summary>
Possible key sizes.
</summary>
</member>
<member name="F:Syncfusion.Compression.Zip.Aes.KeySize.Bits128">
<summary>
128-bit.
</summary>
</member>
<member name="F:Syncfusion.Compression.Zip.Aes.KeySize.Bits192">
<summary>
192-bit.
</summary>
</member>
<member name="F:Syncfusion.Compression.Zip.Aes.KeySize.Bits256">
<summary>
256-bit.
</summary>
</member>
<member name="T:Syncfusion.Compression.Zip.RFC2898Key">
<summary>
Implementation Rfc2898Key generation
</summary>
</member>
<member name="F:Syncfusion.Compression.Zip.RFC2898Key.m_block">
<summary>
Block Number
</summary>
</member>
<member name="F:Syncfusion.Compression.Zip.RFC2898Key.m_rfcBuffer">
<summary>
Rfc Buffer
</summary>
</member>
<member name="F:Syncfusion.Compression.Zip.RFC2898Key.m_endOffset">
<summary>
End Offset
</summary>
</member>
<member name="F:Syncfusion.Compression.Zip.RFC2898Key.m_iterations">
<summary>
No of Iterations
</summary>
</member>
<member name="F:Syncfusion.Compression.Zip.RFC2898Key.m_salt">
<summary>
Salt Value
</summary>
</member>
<member name="F:Syncfusion.Compression.Zip.RFC2898Key.m_startOffset">
<summary>
Start Offset
</summary>
</member>
<member name="F:Syncfusion.Compression.Zip.RFC2898Key.m_password">
<summary>
Password
</summary>
</member>
<member name="F:Syncfusion.Compression.Zip.RFC2898Key.m_blockSizeValue">
<summary>
BlockSize for SHA1 buffer
</summary>
</member>
<member name="F:Syncfusion.Compression.Zip.RFC2898Key.m_inner">
<summary>
Inner buffer
</summary>
</member>
<member name="F:Syncfusion.Compression.Zip.RFC2898Key.m_outer">
<summary>
Outer buffer
</summary>
</member>
<member name="F:Syncfusion.Compression.Zip.RFC2898Key.m_hashing">
<summary>
Indicates whether needs hash
</summary>
</member>
<member name="F:Syncfusion.Compression.Zip.RFC2898Key.m_keyVal">
<summary>
Key Value
</summary>
</member>
<member name="F:Syncfusion.Compression.Zip.RFC2898Key.m_buffer">
<summary>
Buffer
</summary>
</member>
<member name="F:Syncfusion.Compression.Zip.RFC2898Key.m_count">
<summary>
No of hash
</summary>
</member>
<member name="F:Syncfusion.Compression.Zip.RFC2898Key.m_stateSHA1">
<summary>
State of SHA1
</summary>
</member>
<member name="F:Syncfusion.Compression.Zip.RFC2898Key.m_expandedBuffer">
<summary>
Expanded array
</summary>
</member>
<member name="F:Syncfusion.Compression.Zip.RFC2898Key.m_hmacHashVal">
<summary>
HMAC hash value
</summary>
</member>
<member name="F:Syncfusion.Compression.Zip.RFC2898Key.m_sha1HashVal">
<summary>
SHA1 hash value
</summary>
</member>
<member name="M:Syncfusion.Compression.Zip.RFC2898Key.#ctor(System.String,System.Byte[],System.Int32)">
<summary>
Constructor
</summary>
<param name="password">Password</param>
<param name="salt">salt value to get key</param>
<param name="iterations">No of iteration used</param>
</member>
<member name="M:Syncfusion.Compression.Zip.RFC2898Key.#ctor(System.Byte[],System.Byte[],System.Int32)">
<summary>
Constructor
</summary>
<param name="password">Password</param>
<param name="salt">salt value to get key</param>
<param name="iterations">No of iteration used</param>
</member>
<member name="M:Syncfusion.Compression.Zip.RFC2898Key.ByteArray(System.Int32)">
<summary>
Creates a byte array for input
</summary>
<param name="input">Input</param>
<returns>Converted byte array for input</returns>
</member>
<member name="M:Syncfusion.Compression.Zip.RFC2898Key.DeriveCryptographicKey">
<summary>
Derives key
</summary>
<returns>key</returns>
</member>
<member name="M:Syncfusion.Compression.Zip.RFC2898Key.GetBytes(System.Int32)">
<summary>
Generates the byte array based on the given length
</summary>
<param name="length">Length of the array</param>
<returns>Byte array</returns>
</member>
<member name="M:Syncfusion.Compression.Zip.RFC2898Key.InitializeRfc2898">
<summary>
Initializes the RFC to initial state
</summary>
</member>
<member name="M:Syncfusion.Compression.Zip.RFC2898Key.UpdateInnerAndOuterArrays">
<summary>
Updates the m_inner and m_outer arrays
</summary>
</member>
<member name="M:Syncfusion.Compression.Zip.RFC2898Key.InitializeKey(System.Byte[])">
<summary>
Initializes the key value
</summary>
<param name="keyVal"></param>
</member>
<member name="M:Syncfusion.Compression.Zip.RFC2898Key.ComputeHash(System.Byte[])">
<summary>
Computes hash code for the given data
</summary>
<param name="data">input data</param>
<returns>return hash in bytes</returns>
</member>
<member name="M:Syncfusion.Compression.Zip.RFC2898Key.UpdateBlock(System.Byte[],System.Int32,System.Int32,System.Byte[],System.Int32)">
<summary>
Computes hash for the specified region from input for the given offset and copies the data to the output from the given offset
</summary>
<param name="input">Input array</param>
<param name="inputOff">input Offset</param>
<param name="count">Length</param>
<param name="output">Output array</param>
<param name="outputOff">output Offset</param>
<returns></returns>
</member>
<member name="M:Syncfusion.Compression.Zip.RFC2898Key.UpdateFinalBlock(System.Byte[],System.Int32,System.Int32)">
<summary>
Computes hash for the specified region from input for the given offset.
</summary>
<param name="input">Input array</param>
<param name="inputOff">input Offset</param>
<param name="count">Length</param>
</member>
<member name="M:Syncfusion.Compression.Zip.RFC2898Key.Initialize">
<summary>
Clears all value rom arrays
</summary>
</member>
<member name="M:Syncfusion.Compression.Zip.RFC2898Key.InitializeState">
<summary>
Initializes State values
</summary>
</member>
<member name="M:Syncfusion.Compression.Zip.RFC2898Key.UpdateHashData(System.Byte[],System.Int32,System.Int32)">
<summary>
Computes hash for the given input data from the specified offset and Length
</summary>
<param name="inputData">Input</param>
<param name="startOffSet">start from the input array</param>
<param name="size">length needs to be hashed</param>
<returns></returns>
</member>
<member name="M:Syncfusion.Compression.Zip.RFC2898Key.UpdateEndHash">
<summary>
Computes the final hash code
</summary>
<returns>hash data</returns>
</member>
<member name="M:Syncfusion.Compression.Zip.RFC2898Key.SHAModify(System.UInt32[],System.UInt32[],System.Byte[])">
<summary>
Modifies the buffer using SHA
</summary>
<param name="expandedBuffer">input </param>
<param name="state">State array</param>
<param name="block">Blocks</param>
</member>
<member name="M:Syncfusion.Compression.Zip.RFC2898Key.SHAExpansion(System.UInt32[])">
<summary>
Expand the input array using SHA
</summary>
<param name="input">Input array</param>
</member>
<member name="M:Syncfusion.Compression.Zip.RFC2898Key.DWORDFromBigEndian(System.UInt32[],System.Int32,System.Byte[])">
<summary>
Convert the BigEndian to DWORD
</summary>
<param name="input">Dword array</param>
<param name="digits">No of digits</param>
<param name="block">Input block</param>
</member>
<member name="M:Syncfusion.Compression.Zip.RFC2898Key.DWORDToBigEndian(System.Byte[],System.UInt32[],System.Int32)">
<summary>
Convert Dword to BigEndian
</summary>
<param name="blockData">BigEndian array</param>
<param name="output">Output array</param>
<param name="digits">no of digits</param>
</member>
<member name="P:Syncfusion.Compression.Zip.RFC2898Key.Hash">
<summary>
Hash value
</summary>
</member>
<member name="T:Syncfusion.Compression.Zip.SecurityConstants">
<summary>
Contains security Constants
</summary>
</member>
<member name="F:Syncfusion.Compression.Zip.SecurityConstants.AesPassVerLength">
<summary>
Password Verifier Length of AES Encryption
</summary>
</member>
<member name="F:Syncfusion.Compression.Zip.SecurityConstants.AesMacLength">
<summary>
Message Authentication Code Length of AES Encryption
</summary>
</member>
<member name="F:Syncfusion.Compression.Zip.SecurityConstants.ZipCryptoPassLength">
<summary>
Password Length of ZipCrypto Encryption
</summary>
</member>
<member name="F:Syncfusion.Compression.Zip.SecurityConstants.ZipCryptoPassVerPos">
<summary>
Password verifier value position of ZipCrypto 0 based index
</summary>
</member>
<member name="F:Syncfusion.Compression.Zip.SecurityConstants.PKZipEncryptionHeader">
<summary>
PKZip strong encryption header length
</summary>
</member>
<member name="F:Syncfusion.Compression.Zip.SecurityConstants.AES">
<summary>
AES compression method
</summary>
</member>
<member name="F:Syncfusion.Compression.Zip.SecurityConstants.Rfc2898BlockSize">
<summary>
Block size for Rfc2898Key
</summary>
</member>
<member name="F:Syncfusion.Compression.Zip.SecurityConstants.PassIterations">
<summary>
Password iteration Count for AES
</summary>
</member>
<member name="F:Syncfusion.Compression.Zip.SecurityConstants.AesBlockSize">
<summary>
Aes Block Size
</summary>
</member>
<member name="F:Syncfusion.Compression.Zip.SecurityConstants.AesEncryptionHeader">
<summary>
AES encryption header constants
</summary>
</member>
<member name="T:Syncfusion.Compression.Zip.ZipCrypto">
<summary>
ZipCrypto Encryption and Decryption
</summary>
</member>
<member name="F:Syncfusion.Compression.Zip.ZipCrypto.m_dataStream">
<summary>
Data stream
</summary>
</member>
<member name="F:Syncfusion.Compression.Zip.ZipCrypto.m_password">
<summary>
Password
</summary>
</member>
<member name="F:Syncfusion.Compression.Zip.ZipCrypto.m_iCrc">
<summary>
Crc value
</summary>
</member>
<member name="F:Syncfusion.Compression.Zip.ZipCrypto.m_Keys">
<summary>
Initial keys
</summary>
</member>
<member name="F:Syncfusion.Compression.Zip.ZipCrypto.m_crc32">
<summary>
ZipCrc32
</summary>
</member>
<member name="M:Syncfusion.Compression.Zip.ZipCrypto.#ctor(System.IO.Stream,System.String,System.UInt32)">
<summary>
Constructor initializes Data stream and password
</summary>
<param name="dataStream">Data</param>
<param name="password">Password</param>
</member>
<member name="M:Syncfusion.Compression.Zip.ZipCrypto.#ctor(System.String,System.UInt32)">
<summary>
Initializes Password and Crc value
</summary>
<param name="password">Password</param>
<param name="crc">Crc value</param>
</member>
<member name="M:Syncfusion.Compression.Zip.ZipCrypto.Initialize">
<summary>
Initializes key and crc
</summary>
</member>
<member name="M:Syncfusion.Compression.Zip.ZipCrypto.UpdatePassword(System.String)">
<summary>
Update password
</summary>
<param name="password">Password</param>
</member>
<member name="M:Syncfusion.Compression.Zip.ZipCrypto.UpdateKeys(System.Byte)">
<summary>
Update key values
</summary>
<param name="byteVal">byte needed for key update</param>
</member>
<member name="M:Syncfusion.Compression.Zip.ZipCrypto.InitiateCipher(System.String)">
<summary>
Initializes the keys using Password
</summary>
<param name="passphrase">Password of the zip file</param>
</member>
<member name="M:Syncfusion.Compression.Zip.ZipCrypto.Write(System.String)">
<summary>
Key Update using password
</summary>
<param name="password">Password of the zip file</param>
</member>
<member name="M:Syncfusion.Compression.Zip.ZipCrypto.EncryptMessage(System.Byte[])">
<summary>
Data Encryption
</summary>
<param name="plainData">Plain data</param>
<returns>Cipher data</returns>
</member>
<member name="M:Syncfusion.Compression.Zip.ZipCrypto.DecryptMessage(System.Byte[])">
<summary>
Data Decryption
</summary>
<param name="cipherData">Cipher data</param>
<returns>Plain data</returns>
</member>
<member name="M:Syncfusion.Compression.Zip.ZipCrypto.Decrypt(System.Byte[])">
<summary>
Decrypt the data using ZipCrypto
</summary>
<param name="data">Cipher data</param>
<returns>Plain data</returns>
</member>
<member name="M:Syncfusion.Compression.Zip.ZipCrypto.Encrypt(System.Byte[])">
<summary>
Encrypt the data using ZipCrypto
</summary>
<param name="data">Plain data</param>
<returns> Cipher data</returns>
</member>
<member name="M:Syncfusion.Compression.Zip.ZipCrypto.GetCryptoByte">
<summary>
Generates the Encryption and Decryption Byte
</summary>
<returns>byte value</returns>
</member>
<member name="T:Syncfusion.Compression.Zip.EncryptionAlgorithm">
<summary>
Encryption types.
</summary>
</member>
<member name="F:Syncfusion.Compression.Zip.EncryptionAlgorithm.None">
<summary>
No Encryption
</summary>
</member>
<member name="F:Syncfusion.Compression.Zip.EncryptionAlgorithm.AES128">
<summary>
AES-128 bit encryption
</summary>
</member>
<member name="F:Syncfusion.Compression.Zip.EncryptionAlgorithm.AES192">
<summary>
AES-192 bit encryption
</summary>
</member>
<member name="F:Syncfusion.Compression.Zip.EncryptionAlgorithm.AES256">
<summary>
AES-256 bit encryption
</summary>
</member>
<member name="F:Syncfusion.Compression.Zip.EncryptionAlgorithm.ZipCrypto">
<summary>
ZipCrypto Encryption
</summary>
</member>
<member name="T:Syncfusion.Compression.Zip.ZipArchive">
<summary>
Represents zip archive.
</summary>
</member>
<member name="F:Syncfusion.Compression.Zip.ZipArchive.m_arrItems">
<summary>
Collection of archive items.
</summary>
</member>
<member name="F:Syncfusion.Compression.Zip.ZipArchive.m_dicItems">
<summary>
Dictionary that allows quick search operations by item name.
Key - item name,
Value - corresponding ZipArchiveItem.
</summary>
</member>
<member name="F:Syncfusion.Compression.Zip.ZipArchive.m_fileNamePreprocessor">
<summary>
File name preprocessor - object that converts full file/folder
name into value that will be written into zip archive.
</summary>
</member>
<member name="F:Syncfusion.Compression.Zip.ZipArchive.m_bCheckCrc">
<summary>
Indicates whether we should check Crc value when reading item's data. Check
is performed when user gets access to decompressed data for the first time.
</summary>
</member>
<member name="F:Syncfusion.Compression.Zip.ZipArchive.m_defaultLevel">
<summary>
Default compression level.
</summary>
</member>
<member name="F:Syncfusion.Compression.Zip.ZipArchive.m_netCompression">
<summary>
Compresses files using custom NetCompressor.
</summary>
</member>
<member name="F:Syncfusion.Compression.Zip.ZipArchive.m_password">
<summary>
Password for the zip File
</summary>
</member>
<member name="F:Syncfusion.Compression.Zip.ZipArchive.m_encryptType">
<summary>
Type of the Encryption
</summary>
</member>
<member name="F:Syncfusion.Compression.Zip.ZipArchive.CreateCompressor">
<summary>
Creates compressor.
</summary>
</member>
<member name="M:Syncfusion.Compression.Zip.ZipArchive.FindValueFromEnd(System.IO.Stream,System.UInt32,System.Int32)">
<summary>
Searches for integer value from the end of the stream.
</summary>
<param name="stream">Stream to search value in.</param>
<param name="value">Value to locate.</param>
<param name="maxCount">Maximum number of bytes to scan.</param>
<returns>Offset to the value, or -1 if it wasn't found.</returns>
</member>
<member name="M:Syncfusion.Compression.Zip.ZipArchive.ReadInt32(System.IO.Stream)">
<summary>
Extracts Int32 value from the stream.
</summary>
<param name="stream">Stream to read data from.</param>
<returns>Extracted value.</returns>
</member>
<member name="M:Syncfusion.Compression.Zip.ZipArchive.ReadInt16(System.IO.Stream)">
<summary>
Extracts Int16 value from the stream.
</summary>
<param name="stream">Stream to read data from.</param>
<returns>Extracted value.</returns>
</member>
<member name="M:Syncfusion.Compression.Zip.ZipArchive.ReadUInt16(System.IO.Stream)">
<summary>
Extracts unsigned Int16 value from the stream.
</summary>
<param name="stream">Stream to read data from.</param>
<returns>Extracted value.</returns>
</member>
<member name="M:Syncfusion.Compression.Zip.ZipArchive.ReadUInt32(System.IO.Stream)">
<summary>
Extracts UInt32 value from the stream.
</summary>
<param name="stream">Stream to read data from.</param>
<returns>Extracted value.</returns>
</member>
<member name="M:Syncfusion.Compression.Zip.ZipArchive.AddDirectory(System.String)">
<summary>
Adds empty directory to the archive.
</summary>
<param name="directoryName">Directory path.</param>
<returns>Item that has been added.</returns>
</member>
<member name="M:Syncfusion.Compression.Zip.ZipArchive.AddFile(System.String)">
<summary>
Adds specified file to the archive.
</summary>
<param name="fileName">File to add.</param>
<returns>Item that has been added.</returns>
</member>
<member name="M:Syncfusion.Compression.Zip.ZipArchive.AddItem(System.String,System.IO.Stream,System.Boolean,System.IO.FileAttributes)">
<summary>
Adds new item to the archive
</summary>
<param name="itemName">Item name to add.</param>
<param name="data">Items data stream (can be null for empty files or folders).</param>
<param name="bControlStream">Indicates whether ZipArchive is responsible for stream closing.</param>
<param name="attributes">File attributes.</param>
<returns>Item that has been added.</returns>
</member>
<member name="M:Syncfusion.Compression.Zip.ZipArchive.AddItem(System.String,System.IO.Stream,System.Boolean,System.IO.FileInfo)">
<summary>
Adds new item to the archive
</summary>
<param name="itemName">Item name to add.</param>
<param name="data">Items data stream (can be null for empty files or folders).</param>
<param name="bControlStream">Indicates whether ZipArchive is responsible for stream closing.</param>
<param name="attributes">File attributes.</param>
<returns>Item that has been added.</returns>
</member>
<member name="M:Syncfusion.Compression.Zip.ZipArchive.AddItem(Syncfusion.Compression.Zip.ZipArchiveItem)">
<summary>
Adds existing item to the archive.
</summary>
<param name="item">Item to add.</param>
<returns>Added item.</returns>
</member>
<member name="M:Syncfusion.Compression.Zip.ZipArchive.RemoveItem(System.String)">
<summary>
Removes item from the archive.
</summary>
<param name="itemName">Item name to remove.</param>
</member>
<member name="M:Syncfusion.Compression.Zip.ZipArchive.RemoveAt(System.Int32)">
<summary>
Removes item at the specified position.
</summary>
<param name="index">Item index to remove.</param>
</member>
<member name="M:Syncfusion.Compression.Zip.ZipArchive.Remove(System.Text.RegularExpressions.Regex)">
<summary>
Removes items that matches specified regular expression from the collection.
</summary>
<param name="mask">Regular expression used to decide whether to remove item or not.</param>
</member>
<member name="M:Syncfusion.Compression.Zip.ZipArchive.UpdateItem(System.String,System.IO.Stream,System.Boolean)">
<summary>
Updates item inside existing archive.
</summary>
<param name="itemName">Item name to update.</param>
<param name="newDataStream">New data for the item.</param>
<param name="controlStream">Indicates whether item should control its stream after update.</param>
</member>
<member name="M:Syncfusion.Compression.Zip.ZipArchive.UpdateItem(System.String,System.IO.Stream,System.Boolean,System.IO.FileAttributes)">
<summary>
Updates existing item or creates new one.
</summary>
<param name="itemName">Item to update or create.</param>
<param name="newDataStream">New data for the item.</param>
<param name="controlStream">Indicates whether item should control its stream after update.</param>
<param name="attributes">File attributes for the item. This argument is only used if item is created.</param>
</member>
<member name="M:Syncfusion.Compression.Zip.ZipArchive.UpdateItem(System.String,System.Byte[])">
<summary>
Updates item inside existing archive.
</summary>
<param name="itemName">Item name to update.</param>
<param name="newData">New data for the item.</param>
</member>
<member name="M:Syncfusion.Compression.Zip.ZipArchive.Save(System.String)">
<summary>
Saves archive into specified file.
</summary>
<param name="outputFileName">Output file name.</param>
</member>
<member name="M:Syncfusion.Compression.Zip.ZipArchive.Save(System.String,System.Boolean)">
<summary>
Saves archive into specified file.
</summary>
<param name="outputFileName">Output file name.</param>
<param name="createFilePath">Indicates whether we should create full path to the file if it doesn't exist.</param>
</member>
<member name="M:Syncfusion.Compression.Zip.ZipArchive.Save(System.IO.Stream,System.Boolean)">
<summary>
Saves archive into specified stream.
</summary>
<param name="stream">Output stream.</param>
<param name="closeStream">Indicates whether method should close stream after saving.</param>
</member>
<member name="M:Syncfusion.Compression.Zip.ZipArchive.Open(System.String)">
<summary>
Reads archive data from the file.
</summary>
<param name="inputFileName">Filename to read.</param>
</member>
<member name="M:Syncfusion.Compression.Zip.ZipArchive.Open(System.IO.Stream,System.Boolean)">
<summary>
Reads archive data from the stream. In the current implementation
stream must be seekable and readable to extract data.
</summary>
<param name="stream">Stream to read data from.</param>
<param name="closeStream">Indicates whether method should close stream after reading.</param>
</member>
<member name="M:Syncfusion.Compression.Zip.ZipArchive.Close">
<summary>
Clears all internal data.
</summary>
</member>
<member name="M:Syncfusion.Compression.Zip.ZipArchive.Find(System.String)">
<summary>
Searches for the item with specified name.
</summary>
<param name="itemName">Item to find.</param>
<returns>Zero-based item index if found; -1 otherwise.</returns>
</member>
<member name="M:Syncfusion.Compression.Zip.ZipArchive.Find(System.Text.RegularExpressions.Regex)">
<summary>
Searches for the item with specified name.
</summary>
<param name="itemRegex">Regular expression that defines item to find.</param>
<returns>Zero-based item index if found; -1 otherwise.</returns>
</member>
<member name="M:Syncfusion.Compression.Zip.ZipArchive.WriteCentralDirectory(System.IO.Stream)">
<summary>
Writes central directory to the stream.
</summary>
<param name="stream">Stream to write data into.</param>
</member>
<member name="M:Syncfusion.Compression.Zip.ZipArchive.WriteCentralDirectoryEnd(System.IO.Stream,System.Int64)">
<summary>
Writes End of central directory record into stream.
</summary>
<param name="stream">Stream to write data into.</param>
<param name="directoryStart">Offset to the central directory start.</param>
</member>
<member name="M:Syncfusion.Compression.Zip.ZipArchive.ReadCentralDirectoryData(System.IO.Stream)">
<summary>
Read central directory record from the stream.
</summary>
<param name="stream">Stream to read from.</param>
</member>
<member name="M:Syncfusion.Compression.Zip.ZipArchive.ExtractItems(System.IO.Stream)">
<summary>
Extracts items' data from the stream.
</summary>
<param name="stream">Stream to read data from.</param>
</member>
<member name="M:Syncfusion.Compression.Zip.ZipArchive.Clone">
<summary>
Creates a copy of the current instance.
</summary>
<returns>A copy of the current instance.</returns>
</member>
<member name="M:Syncfusion.Compression.Zip.ZipArchive.Protect(System.String,Syncfusion.Compression.Zip.EncryptionAlgorithm)">
<summary>
Protects the archived file with password using specified algorithm.
</summary>
<param name="password">Password to protect.</param>
<param name="type">Type of encryption algorithm to be used.</param>
</member>
<member name="M:Syncfusion.Compression.Zip.ZipArchive.UnProtect">
<summary>
Removes password from the compressed file.
</summary>
</member>
<member name="M:Syncfusion.Compression.Zip.ZipArchive.Open(System.String,System.String)">
<summary>
Opens an encrypted zip file with password.
</summary>
<param name="fileName">File Name.</param>
<param name="password">Password of the file to open.</param>
</member>
<member name="M:Syncfusion.Compression.Zip.ZipArchive.Open(System.IO.Stream,System.Boolean,System.String)">
<summary>
Reads archive data from the stream. In the current implementation
stream must be seekable and readable to extract data.
</summary>
<param name="stream">Stream to read data from.</param>
<param name="closeStream">Indicates whether method should close stream after reading.</param>
<param name="password">Password for the file to open.</param>
</member>
<member name="M:Syncfusion.Compression.Zip.ZipArchive.Dispose">
<summary>
A method to release allocated unmanaged resources.
</summary>
</member>
<member name="M:Syncfusion.Compression.Zip.ZipArchive.Finalize">
<summary>
Class finilizer.
</summary>
</member>
<member name="P:Syncfusion.Compression.Zip.ZipArchive.Item(System.Int32)">
<summary>
Returns single archive item from the collection. Read-only.
</summary>
<param name="index">Zero-based index of the item to return.</param>
<returns>Single archive item from the collection.</returns>
</member>
<member name="P:Syncfusion.Compression.Zip.ZipArchive.Item(System.String)">
<summary>
Returns item by its name. Null if item wasn't found. Read-only.
</summary>
</member>
<member name="P:Syncfusion.Compression.Zip.ZipArchive.Count">
<summary>
Returns number of items inside archive. Read-only.
</summary>
</member>
<member name="P:Syncfusion.Compression.Zip.ZipArchive.Items">
<summary>
Returns the items inside archive. Read-only.
</summary>
</member>
<member name="P:Syncfusion.Compression.Zip.ZipArchive.FileNamePreprocessor">
<summary>
Gets / sets file name preprocessor - object that converts full file/folder
name into value that will be written into zip archive.
</summary>
</member>
<member name="P:Syncfusion.Compression.Zip.ZipArchive.DefaultCompressionLevel">
<summary>
Gets / sets default compression level - compression level for new items.
By default is equal to CompressionLevel.Best.
</summary>
</member>
<member name="P:Syncfusion.Compression.Zip.ZipArchive.CheckCrc">
<summary>
Indicates whether we should check Crc value when reading item's data. Check
is performed when user gets access to item's decompressed data for the first time.
</summary>
</member>
<member name="P:Syncfusion.Compression.Zip.ZipArchive.UseNetCompression">
<summary>
Uses custom compressed stream reader and writer.
</summary>
</member>
<member name="P:Syncfusion.Compression.Zip.ZipArchive.EncryptionAlgorithm">
<summary>
Returns the encryption algorithm used. Default value is NONE.
</summary>
</member>
<member name="P:Syncfusion.Compression.Zip.ZipArchive.Password">
<summary>
Password for ZipFile
</summary>
</member>
<member name="T:Syncfusion.Compression.Zip.ZipArchiveItem">
<summary>
Represents single item inside zip archive. It can be either folder or file.
</summary>
</member>
<member name="F:Syncfusion.Compression.Zip.ZipArchiveItem.m_strItemName">
<summary>
Name of the archive item.
</summary>
</member>
<member name="F:Syncfusion.Compression.Zip.ZipArchiveItem.m_compressionMethod">
<summary>
Compression method.
</summary>
</member>
<member name="F:Syncfusion.Compression.Zip.ZipArchiveItem.m_compressionLevel">
<summary>
Compression level.
</summary>
</member>
<member name="F:Syncfusion.Compression.Zip.ZipArchiveItem.m_uiCrc32">
<summary>
Crc.
</summary>
</member>
<member name="F:Syncfusion.Compression.Zip.ZipArchiveItem.m_streamData">
<summary>
Stream with item's data.
</summary>
</member>
<member name="F:Syncfusion.Compression.Zip.ZipArchiveItem.m_lCompressedSize">
<summary>
Compressed data size.
</summary>
</member>
<member name="F:Syncfusion.Compression.Zip.ZipArchiveItem.m_lOriginalSize">
<summary>
Original (not compressed) data size.
</summary>
</member>
<member name="F:Syncfusion.Compression.Zip.ZipArchiveItem.m_bControlStream">
<summary>
Indicates whether this item controls it's data stream.
</summary>
</member>
<member name="F:Syncfusion.Compression.Zip.ZipArchiveItem.m_bCompressed">
<summary>
Indicates whether internal stream contains compressed data.
</summary>
</member>
<member name="F:Syncfusion.Compression.Zip.ZipArchiveItem.m_lCrcPosition">
<summary>
Position of the size block inside local file header.
</summary>
</member>
<member name="F:Syncfusion.Compression.Zip.ZipArchiveItem.m_iLocalHeaderOffset">
<summary>
Offset to the local header.
</summary>
</member>
<member name="F:Syncfusion.Compression.Zip.ZipArchiveItem.m_options">
<summary>
General purpose bit flag.
</summary>
</member>
<member name="F:Syncfusion.Compression.Zip.ZipArchiveItem.m_iExternalAttributes">
<summary>
Item's external attributes.
</summary>
</member>
<member name="F:Syncfusion.Compression.Zip.ZipArchiveItem.m_bCheckCrc">
<summary>
Indicates whether we should check crc value after decompressing item's data.
</summary>
</member>
<member name="F:Syncfusion.Compression.Zip.ZipArchiveItem.m_bOptimizedDecompress">
<summary>
</summary>
</member>
<member name="F:Syncfusion.Compression.Zip.ZipArchiveItem.m_actualCompression">
<summary>
Actual compression when Aes Encryption
</summary>
</member>
<member name="F:Syncfusion.Compression.Zip.ZipArchiveItem.m_lastModfied">
<summary>
Last modified date time
</summary>
</member>
<member name="M:Syncfusion.Compression.Zip.ZipArchiveItem.#ctor(Syncfusion.Compression.Zip.ZipArchive)">
<summary>
Default constructor.
</summary>
</member>
<member name="M:Syncfusion.Compression.Zip.ZipArchiveItem.#ctor(Syncfusion.Compression.Zip.ZipArchive,System.String,System.IO.Stream,System.Boolean,System.IO.FileAttributes)">
<summary>
Creates new instance of the zip item.
</summary>
<param name="itemName">Name of the item (can be relative or absolute path).</param>
<param name="streamData">Stream data.</param>
<param name="controlStream">
Indicates whether item controls stream and must close it when item finish its work.
</param>
<param name="attributes"></param>
</member>
<member name="M:Syncfusion.Compression.Zip.ZipArchiveItem.Update(Syncfusion.Compression.Zip.ZippedContentStream)">
<summary>
</summary>
<param name="stream"></param>
</member>
<member name="M:Syncfusion.Compression.Zip.ZipArchiveItem.Update(System.IO.Stream,System.Boolean)">
<summary>
Updates internal data stream.
</summary>
<param name="newDataStream">New stream to set.</param>
<param name="controlStream">Indicates whether item should conrol new stream.</param>
</member>
<member name="M:Syncfusion.Compression.Zip.ZipArchiveItem.ResetFlags">
<summary>
</summary>
</member>
<member name="M:Syncfusion.Compression.Zip.ZipArchiveItem.Write(System.IO.Stream)">
<summary>
This method saves item inside stream.
</summary>
<param name="outputStream">Stream to save item into.</param>
</member>
<member name="M:Syncfusion.Compression.Zip.ZipArchiveItem.Close">
<summary>
Frees all internal resources and closes internal stream if necessary.
</summary>
</member>
<member name="M:Syncfusion.Compression.Zip.ZipArchiveItem.WriteFileHeader(System.IO.Stream)">
<summary>
This method writes file header into Central directory record.
</summary>
<param name="stream">Stream to write data into.</param>
</member>
<member name="M:Syncfusion.Compression.Zip.ZipArchiveItem.ConvertDateTime(System.DateTime)">
<summary>
Converts current datetime to Windows format.
</summary>
<param name="time">Current Date and time.</param>
<returns>Value in Windows format.</returns>
</member>
<member name="M:Syncfusion.Compression.Zip.ZipArchiveItem.ConvertToDateTime(System.Int32)">
<summary>
Converts Windows format to Date Time.
</summary>
<param name="time">Windows format Date and time.</param>
<returns>Value in Date Time.</returns>
</member>
<!-- Badly formed XML comment ignored for member "M:Syncfusion.Compression.Zip.ZipArchiveItem.CheckValidDate(System.UInt16,System.UInt16,System.UInt16)" -->
<member name="M:Syncfusion.Compression.Zip.ZipArchiveItem.ReadCentralDirectoryData(System.IO.Stream)">
<summary>
Read data from the stream based on the central directory.
</summary>
<param name="stream">Stream to read data from, stream.Position must point at just after correct file header.</param>
</member>
<member name="M:Syncfusion.Compression.Zip.ZipArchiveItem.ReadData(System.IO.Stream,System.Boolean)">
<summary>
Reads zipped data from the stream.
</summary>
<param name="stream">Stream to read data from.</param>
<param name="checkCrc">Indicates whether we should check crc value after data decompression.</param>
</member>
<member name="M:Syncfusion.Compression.Zip.ZipArchiveItem.ReadCompressedData(System.IO.Stream)">
<summary>
Extracts compressed data from the stream.
</summary>
<param name="stream">Stream to read data from.</param>
</member>
<member name="M:Syncfusion.Compression.Zip.ZipArchiveItem.ReadLocalHeader(System.IO.Stream)">
<summary>
Extracts local header from the stream.
</summary>
<param name="stream">Stream to read data from.</param>
</member>
<member name="M:Syncfusion.Compression.Zip.ZipArchiveItem.DecompressData">
<summary>
Decompressed internal data if necessary.
</summary>
</member>
<member name="M:Syncfusion.Compression.Zip.ZipArchiveItem.WriteHeader(System.IO.Stream)">
<summary>
Writes local file header.
</summary>
<param name="outputStream">Stream to write into.</param>
</member>
<member name="M:Syncfusion.Compression.Zip.ZipArchiveItem.WriteZippedContent(System.IO.Stream)">
<summary>
Writes zipped content inside stream.
</summary>
<param name="outputStream">Stream to write into.</param>
</member>
<member name="M:Syncfusion.Compression.Zip.ZipArchiveItem.WriteFooter(System.IO.Stream)">
<summary>
Writes local file footer into stream.
</summary>
<param name="outputStream">Stream to write into.</param>
</member>
<member name="M:Syncfusion.Compression.Zip.ZipArchiveItem.CheckCrc">
<summary>
Checks whether Crc field and stream data corresponds each other.
</summary>
</member>
<member name="M:Syncfusion.Compression.Zip.ZipArchiveItem.CloneStream(System.IO.Stream)">
<summary>
Creates copy of the stream.
</summary>
<param name="stream">Stream to copy.</param>
<returns>Created stream.</returns>
</member>
<member name="M:Syncfusion.Compression.Zip.ZipArchiveItem.CheckForLatin(System.String)">
<summary>
Checks for Latin characters in the Unicode string.
</summary>
<param name="unicodeText">Input Unicode string.</param>
<returns>True if the Unicode string contain Latin characters. False otherwise.</returns>
</member>
<member name="M:Syncfusion.Compression.Zip.ZipArchiveItem.Dispose">
<summary>
A method to release allocated unmanaged resources.
</summary>
</member>
<member name="M:Syncfusion.Compression.Zip.ZipArchiveItem.Finalize">
<summary>
Finilizer.
</summary>
</member>
<member name="M:Syncfusion.Compression.Zip.ZipArchiveItem.WriteEncryptionHeader(System.IO.Stream)">
<summary>
Writes the header to Indicate the zip the file is encrypted.
</summary>
<param name="stream">The data to write</param>
</member>
<member name="M:Syncfusion.Compression.Zip.ZipArchiveItem.Encrypt(System.Byte[])">
<summary>
Data Encryption
</summary>
<param name="plainData">Data to be Encrypted</param>
<returns>Encrypted data</returns>
</member>
<member name="M:Syncfusion.Compression.Zip.ZipArchiveItem.Decrypt(System.Byte[])">
<summary>
Data Decryption
</summary>
<param name="cipherData">Data needs to be decrypted</param>
<returns>Decrypted data</returns>
</member>
<member name="M:Syncfusion.Compression.Zip.ZipArchiveItem.IsIBM437Encoding(System.String)">
<summary>
Checks whether the file has unicode characters.
</summary>
<param name="fileName">Name of the file.</param>
<returns></returns>
</member>
<member name="M:Syncfusion.Compression.Zip.ZipArchiveItem.CreateRandom(System.Int32)">
<summary>
Create a Random byte Array
</summary>
<param name="length">Length of the salt value</param>
<returns>salt value</returns>
</member>
<member name="P:Syncfusion.Compression.Zip.ZipArchiveItem.ItemName">
<summary>
Name of the archive item.
</summary>
</member>
<member name="P:Syncfusion.Compression.Zip.ZipArchiveItem.CompressionMethod">
<summary>
Compression method.
</summary>
</member>
<member name="P:Syncfusion.Compression.Zip.ZipArchiveItem.CompressionLevel">
<summary>
Gets/sets item's compression level.
</summary>
</member>
<member name="P:Syncfusion.Compression.Zip.ZipArchiveItem.Crc32">
<summary>
Crc.
</summary>
</member>
<member name="P:Syncfusion.Compression.Zip.ZipArchiveItem.DataStream">
<summary>
Stream with item's data.
</summary>
</member>
<member name="P:Syncfusion.Compression.Zip.ZipArchiveItem.CompressedSize">
<summary>
Compressed data size.
</summary>
</member>
<member name="P:Syncfusion.Compression.Zip.ZipArchiveItem.OriginalSize">
<summary>
Original (not compressed) data size.
</summary>
</member>
<member name="P:Syncfusion.Compression.Zip.ZipArchiveItem.ControlStream">
<summary>
Indicates whether this item controls it's data stream.
</summary>
</member>
<member name="P:Syncfusion.Compression.Zip.ZipArchiveItem.Compressed">
<summary>
Indicates whether internal stream contains compressed data.
</summary>
</member>
<member name="P:Syncfusion.Compression.Zip.ZipArchiveItem.ExternalAttributes">
<summary>
Gets / sets item's external attributes.
</summary>
</member>
<member name="P:Syncfusion.Compression.Zip.ZipArchiveItem.OemCodePage">
<summary>
Gets current OEM code page.
</summary>
</member>
<member name="P:Syncfusion.Compression.Zip.ZipArchiveItem.LastModified">
<summary>
Last modified date time
</summary>
</member>
<member name="T:Syncfusion.Compression.Zip.ZipCrc32">
<summary>
Crc32 implementation used in zip archive to verify data correctness.
</summary>
</member>
<member name="F:Syncfusion.Compression.Zip.ZipCrc32.s_crcTable">
<summary>
Special pre-evaluated table used for faster crc evaluation.
Evaluated when crcNumber was 0xEDB88320. EvaluateTable method
can be used to evaluated table with different constant.
</summary>
</member>
<member name="M:Syncfusion.Compression.Zip.ZipCrc32.ComputeCrc(System.Byte[],System.Int32,System.Int32,System.UInt32)">
<summary>Computes crc-32 value for the buffer.</summary>
<param name="buffer">Buffer to compute crc-32 for.</param>
<param name="offset">Offset to the data start.</param>
<param name="length">Data length in bytes.</param>
<param name="startCrc">Initial crc-32 value.</param>
<returns>Updated crc-32 value.</returns>
</member>
<member name="M:Syncfusion.Compression.Zip.ZipCrc32.ComputeCrc(System.IO.Stream,System.Int32)">
<summary>Computes crc-32 value for the stream.</summary>
<param name="stream">Stream to compute crc-32 for.</param>
<param name="length">Data length in bytes.</param>
<returns>Crc-32 value.</returns>
</member>
<member name="M:Syncfusion.Compression.Zip.ZipCrc32.EvaluateTable(System.UInt32)">
<summary>
Evaluates crc table.
</summary>
<param name="crcNumber">"Magic" number.</param>
<returns>Create table.</returns>
</member>
<member name="M:Syncfusion.Compression.Zip.ZipCrc32.ComputeCrc(System.UInt32,System.UInt32)">
<summary>
Computes crc value for given number
</summary>
<param name="number">Number to calculate Crc value</param>
<param name="start">Initial crc-32 value</param>
<returns>Crc value</returns>
</member>
<member name="T:Syncfusion.Compression.Zip.ZipException">
<summary>
This class represents exception type that is mostly raised when some
problems with zip extraction/creation occurs.
</summary>
</member>
<member name="M:Syncfusion.Compression.Zip.ZipException.#ctor(System.String)">
<summary>
Initializes new instance of the exception class.
</summary>
<param name="message">Exception message.</param>
</member>
<member name="T:Syncfusion.Compression.Zip.ZippedContentStream">
<summary>
</summary>
</member>
<member name="F:Syncfusion.Compression.Zip.ZippedContentStream.m_deflateStream">
<summary>
</summary>
</member>
<member name="F:Syncfusion.Compression.Zip.ZippedContentStream.m_uiCrc32">
<summary>
</summary>
</member>
<member name="F:Syncfusion.Compression.Zip.ZippedContentStream.m_lSize">
<summary>
</summary>
</member>
<member name="M:Syncfusion.Compression.Zip.ZippedContentStream.#ctor">
<summary>
Initializes new instance of the stream.
</summary>
</member>
<member name="M:Syncfusion.Compression.Zip.ZippedContentStream.#ctor(Syncfusion.Compression.Zip.ZipArchive.CompressorCreator)">
<summary>
Initializes new instance of the stream.
</summary>
</member>
<member name="M:Syncfusion.Compression.Zip.ZippedContentStream.Flush">
<summary>
Clears all buffers for this stream and causes any buffered data to be written to the underlying device.
</summary>
</member>
<member name="M:Syncfusion.Compression.Zip.ZippedContentStream.Read(System.Byte[],System.Int32,System.Int32)">
<summary>
Reads a sequence of bytes from the current stream and advances the position
within the stream by the number of bytes read.
</summary>
<param name="buffer">An array of bytes. When this method returns, the buffer
contains the specified byte array with the values between offset and
(offset + count - 1) replaced by the bytes read from the current source.</param>
<param name="offset">The zero-based byte offset in buffer at which to begin
storing the data read from the current stream.</param>
<param name="count">The maximum number of bytes to be read from the current stream.</param>
<returns>The total number of bytes read into the buffer. This can be less
than the number of bytes requested if that many bytes are not currently
available, or zero (0) if the end of the stream has been reached.</returns>
</member>
<member name="M:Syncfusion.Compression.Zip.ZippedContentStream.Seek(System.Int64,System.IO.SeekOrigin)">
<summary>
Sets the position within the current stream.
</summary>
<param name="offset">A byte offset relative to the origin parameter.</param>
<param name="origin">A value of type SeekOrigin indicating the reference
point used to obtain the new position.</param>
<returns>The new position within the current stream.</returns>
</member>
<member name="M:Syncfusion.Compression.Zip.ZippedContentStream.SetLength(System.Int64)">
<summary>
Sets the length of the current stream.
</summary>
<param name="value">The desired length of the current stream in bytes.</param>
</member>
<member name="M:Syncfusion.Compression.Zip.ZippedContentStream.Write(System.Byte[],System.Int32,System.Int32)">
<summary>
Writes a sequence of bytes to the current stream and advances the current
position within this stream by the number of bytes written.
</summary>
<param name="buffer">An array of bytes. This method copies count bytes
from buffer to the current stream.</param>
<param name="offset">The zero-based byte offset in buffer at which to begin
copying bytes to the current stream. </param>
<param name="count">The number of bytes to be written to the current stream.</param>
</member>
<member name="P:Syncfusion.Compression.Zip.ZippedContentStream.CanRead">
<summary>
Gets a value indicating whether the current stream supports reading. Read-only.
</summary>
</member>
<member name="P:Syncfusion.Compression.Zip.ZippedContentStream.CanSeek">
<summary>
Gets a value indicating whether the current stream supports seeking. Read-only.
</summary>
</member>
<member name="P:Syncfusion.Compression.Zip.ZippedContentStream.CanWrite">
<summary>
Gets a value indicating whether the current stream supports writing. Read-only.
</summary>
</member>
<member name="P:Syncfusion.Compression.Zip.ZippedContentStream.Length">
<summary>
Gets the length in bytes of the stream. Read-only.
</summary>
</member>
<member name="P:Syncfusion.Compression.Zip.ZippedContentStream.Position">
<summary>
Gets or sets the position within the current stream. Read-only.
</summary>
</member>
<member name="P:Syncfusion.Compression.Zip.ZippedContentStream.ZippedContent">
<summary>
This property returns stream with zipped content. It closes internal deflate
stream, so you won't be able to write anything in int. Read-only.
</summary>
</member>
<member name="P:Syncfusion.Compression.Zip.ZippedContentStream.Crc32">
<summary>
Returns computed crc32 value. Read-only.
</summary>
</member>
<member name="P:Syncfusion.Compression.Zip.ZippedContentStream.UnzippedSize">
<summary>
Returns size of the unzipped data. Read-only.
</summary>
</member>
</members>
</doc>