Klasse OMathMatCol (Word VBA)

Die Klasse OMathMatCol stellt eine Matrixspalte dar. Um eine OMathMatCol -Klassenvariable zu verwenden, muss sie zuerst instanziert werden, beispielsweise

For Each

Hier ist ein Beispiel für die Verarbeitung der OMathMatCol -Elemente in einer Sammlung


Dim omm As OMathMat: Set omm = 
Dim ommCol As OMathMatCol
For Each ommCol In omm.Cols
	With ommCol
		
	End With
Next ommCol

Align

Gibt eine WdOMathHorizAlignType -Konstante zurück oder legt Sie fest, die die horizontale Ausrichtung für Argumente in einer Matrixspalte darstellt. Mögliche Rückgabewerte sind wdOMathHorizAlignCenter - Zentriert, wdOMathHorizAlignLeft - Linksbündig, wdOMathHorizAlignRight - Rechtsbündig.


Dim omm As OMathMatCol: Set omm =  
omm.Align = wdOMathHorizAlignCenter

Args

Gibt ein OMathArgs -Objekt zurück, das die Argumente in einer Matrixspalte darstellt.


Dim omm As OMathMatCol: Set omm =  
Dim omasArgs As OMathArgs
Set omasArgs = omm.Args

ColIndex

Gibt einen Wert vom Typ Long zurück, der die Position einer Spalte innerhalb der Auflistung von Spalten in einer Matrix darstellt.


Dim omm As OMathMatCol: Set omm =  
Dim lngColIndex As Long
lngColIndex = omm.ColIndex

Delete

Löscht die angegebene Matrixspalte.


Dim omm As OMathMatCol: Set omm =  
omm.Delete