Klasse OMathMatCols (Word VBA)

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

Add

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

Add (BeforeCol)

BeforeCol: Eine vorhandene Spalte in der Matrix, vor der die neue Spalte platziert wird.


Dim omms As OMathMatCols: Set omms =  
Dim omm As OMathMatCol
Set omm = omms.Add()

Count

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


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

Item

Gibt ein OMathMatCol-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 OMathMatCols: Set omms =  
Dim omm As OMathMatCol
Set omm = omms(Index:=1)