Hi Aspose Support Team!
I’m using Aspose.Slides to read a slide and write to winform application.
How can check every merge cells in TableEx shape?
Ex:
Table
<!–[if gte mso 9]>
<w:WordDocument>
<w:View>Normal</w:View>
<w:Zoom>0</w:Zoom>
<w:TrackMoves/>
<w:TrackFormatting/>
<w:PunctuationKerning/>
<w:ValidateAgainstSchemas/>
<w:SaveIfXMLInvalid>false</w:SaveIfXMLInvalid>
<w:IgnoreMixedContent>false</w:IgnoreMixedContent>
<w:AlwaysShowPlaceholderText>false</w:AlwaysShowPlaceholderText>
<w:DoNotPromoteQF/>
<w:LidThemeOther>EN-US</w:LidThemeOther>
<w:LidThemeAsian>X-NONE</w:LidThemeAsian>
<w:LidThemeComplexScript>X-NONE</w:LidThemeComplexScript>
<w:Compatibility>
<w:BreakWrappedTables/>
<w:SnapToGridInCell/>
<w:WrapTextWithPunct/>
<w:UseAsianBreakRules/>
<w:DontGrowAutofit/>
<w:SplitPgBreakAndParaMark/>
<w:DontVertAlignCellWithSp/>
<w:DontBreakConstrainedForcedTables/>
<w:DontVertAlignInTxbx/>
<w:Word11KerningPairs/>
<w:CachedColBalance/>
<w:UseFELayout/>
</w:Compatibility>
<w:BrowserLevel>MicrosoftInternetExplorer4</w:BrowserLevel>
<m:mathPr>
<m:mathFont m:val=“Cambria Math”/>
<m:brkBin m:val=“before”/>
<m:brkBinSub m:val="–"/>
<m:smallFrac m:val=“off”/>
<m:dispDef/>
<m:lMargin m:val=“0”/>
<m:rMargin m:val=“0”/>
<m:defJc m:val=“centerGroup”/>
<m:wrapIndent m:val=“1440”/>
<m:intLim m:val=“subSup”/>
<m:naryLim m:val=“undOvr”/>
</m:mathPr></w:WordDocument>
<![endif]–><!–[if gte mso 10]>
<![endif]–>
Cell 0-0 Cell 0-1 |
Cell 0-2 Cell0-3 |
||
Cell 1-0 Cell 2-0 |
Cell 1 -1 |
Cell 1-2 Cell 2-2 |
Cell 1-3 |
Cell 2-1 |
Cell 2-3 |
||
Cell 3-0 |
Cell 3-1 |
Cell 3-2 |
Cell 3-3 |
TryCast(shape, TableEx).Rows.Count : return 4
TryCast(shape, TableEx).Columns.Count : return 4
For x As Integer = 0 To TryCast(shape, TableEx).Rows.Count - 1
For y As Integer = 0 To TryCast(shape, TableEx).Columns.Count - 1
Dim AsCell As Aspose.Slides.Pptx.CellEx = TryCast(shape, TableEx).Rows(x).Item(y)
How to check that Cell 0-0 is merging to Cell 0-1 and also?
Next
Next
Pls show me the way.
Best Regards
----------------
Ngatq