If you want the anchored frames in a range of selected text, you would use
var textList = doc.GetTextForRange(doc.TextSelection, Constants.FTI_FrameAnchor);
If you want to get graphics that are selected as objects, you can use:
var graphic = doc.FirstSelectedGraphicInDoc;
while (graphic.ObjectValid()) { // Do something here. graphic = graphic.NextSelectedGraphicInDoc;
}
Rick