ParentCell
TextFrame.ParentCell-Eigenschaft
Gibt die übergeordnete Zelle zurück oder null, wenn das übergeordnete Objekt das ICell-Interface nicht implementiert. Nur-Lesen ICell
.
public ICell ParentCell { get; }
Beispiele
Das folgende Code-Beispiel zeigt
[C#]
using (Presentation presentation = new Presentation("SomePresentation.pptx"))
{
Table table = (Table)presentation.Slides[0].Shapes[0];
Assert.IsTrue(table[0,0].TextFrame.ParentCell == table[0,0]);
// ...
}
Siehe auch
- Interface ICell
- Klasse TextFrame
- Namespace Aspose.Slides
- Assembly Aspose.Slides