Klasse OMathMatRows (Word VBA)

Die Klasse OMathMatRows stellt eine Auflistung von Matrixzeilen dar. Um eine OMathMatRows -Klassenvariable zu verwenden, muss sie zuerst instanziert werden, beispielsweise

Add

Erstellt eine Formelzeile, fügt sie einer Matrix hinzu und gibt ein OMathMatRow-Objekt zurück.

Add (BeforeRow)

BeforeRow: Eine vorhandene Zeile in der Matrix, vor der die neue Zeile platziert wird.


Dim omms As OMathMatRows: Set omms =  
Dim omm As OMathMatRow
Set omm = omms.Add()

Count

Gibt die Anzahl der in der OMathMatRows-Auflistung enthaltenen Elemente zurück.


Dim omms As OMathMatRows: Set omms =  
Dim lngCount As Long
lngCount = omms.Count

Item

Gibt ein OMathMatRow-Objekt zurück, das das angegebene Element der Auflistung darstellt.

Item (Index)

Index: Gibt die Ordnungsposition des Objekts in der Auflistung zurück.


Dim omms As OMathMatRows: Set omms =  
Dim omm As OMathMatRow
Set omm = omms(Index:=1)