IndexOf

MathParagraph.IndexOf method

Bestimmt den Index eines bestimmten IMathBlocks in der Sammlung.

public int IndexOf(IMathBlock mathBlock)
ParameterTypBeschreibung
mathBlockIMathBlockDas Element, das in der Sammlung gesucht werden soll.

Rückgabewert

Der Index vonmathBlock wenn in der Sammlung gefunden; andernfalls -1.

Beispiele

Beispiel:

[C#]
IAutoShape shape = slide.Shapes.AddMathShape(x, y, width, height);
IMathParagraph mathParagraph = (shape.TextFrame.Paragraphs[0].Portions[0] as MathPortion).MathParagraph;
IMathBlock block = new MathBlock(new MathematicalText("y"));
mathParagraph.Add(block);
int index = mathParagraph.IndexOf(block);

Siehe auch