7 types derived from ParagraphResult
PresentationFramework (7)
src\Framework\MS\Internal\Documents\ParagraphResult.cs (7)
211
internal sealed class ContainerParagraphResult :
ParagraphResult
319
internal sealed class TextParagraphResult :
ParagraphResult
588
internal sealed class TableParagraphResult :
ParagraphResult
775
internal sealed class RowParagraphResult :
ParagraphResult
868
internal sealed class SubpageParagraphResult :
ParagraphResult
984
internal sealed class FigureParagraphResult :
ParagraphResult
1132
internal abstract class FloaterBaseParagraphResult :
ParagraphResult
252 references to ParagraphResult
PresentationFramework (252)
src\Framework\MS\Internal\Documents\ColumnResult.cs (3)
164
internal ReadOnlyCollection<
ParagraphResult
> Paragraphs
216
ReadOnlyCollection<
ParagraphResult
> paragraphs = Paragraphs;
333
private ReadOnlyCollection<
ParagraphResult
> _paragraphs;
src\Framework\MS\Internal\Documents\ParagraphResult.cs (21)
266
internal ReadOnlyCollection<
ParagraphResult
> Paragraphs
291
ReadOnlyCollection<
ParagraphResult
> paragraphs = Paragraphs;
310
private ReadOnlyCollection<
ParagraphResult
> _paragraphs;
472
internal ReadOnlyCollection<
ParagraphResult
> Floaters
487
internal ReadOnlyCollection<
ParagraphResult
> Figures
575
private ReadOnlyCollection<
ParagraphResult
> _floaters;
580
private ReadOnlyCollection<
ParagraphResult
> _figures;
625
internal ReadOnlyCollection<
ParagraphResult
> GetParagraphsFromPoint(Point point, bool snapToText)
637
internal ReadOnlyCollection<
ParagraphResult
> GetParagraphsFromPosition(ITextPointer position)
722
internal ReadOnlyCollection<
ParagraphResult
> Paragraphs
747
ReadOnlyCollection<
ParagraphResult
> paragraphs = Paragraphs;
766
private ReadOnlyCollection<
ParagraphResult
> _paragraphs;
811
internal ReadOnlyCollection<
ParagraphResult
> CellParagraphs
835
ReadOnlyCollection<
ParagraphResult
> cells = CellParagraphs;
854
private ReadOnlyCollection<
ParagraphResult
> _cells;
933
internal ReadOnlyCollection<
ParagraphResult
> FloatingElements
976
private ReadOnlyCollection<
ParagraphResult
> _floatingElements;
1048
internal ReadOnlyCollection<
ParagraphResult
> FloatingElements
1123
private ReadOnlyCollection<
ParagraphResult
> _floatingElements;
1221
internal ReadOnlyCollection<
ParagraphResult
> FloatingElements
1296
private ReadOnlyCollection<
ParagraphResult
> _floatingElements;
src\Framework\MS\Internal\Documents\TextDocumentView.cs (112)
640
internal ReadOnlyCollection<
ParagraphResult
> FloatingElements
688
private ITextPointer GetTextPositionFromPoint(ReadOnlyCollection<
ParagraphResult
> paragraphs, ReadOnlyCollection<
ParagraphResult
> floatingElements, Point point, bool snapToText, bool snapToTextInFloatingElements)
698
ParagraphResult
paragraph;
751
private ITextPointer GetTextPositionFromPoint(
ParagraphResult
paragraph, Point point, bool snapToText)
763
ReadOnlyCollection<
ParagraphResult
> nestedParagraphs = ((ContainerParagraphResult)paragraph).Paragraphs;
799
ReadOnlyCollection<
ParagraphResult
> rowParagraphs = ((TableParagraphResult)paragraph).Paragraphs;
805
ParagraphResult
rowResult = rowParagraphs[index];
813
ReadOnlyCollection<
ParagraphResult
> nestedParagraphs = ((TableParagraphResult)paragraph).GetParagraphsFromPoint(point, snapToText);
842
ReadOnlyCollection<
ParagraphResult
> nestedFloatingElements;
908
private ITextPointer GetTextPositionFromPoint(ReadOnlyCollection<ColumnResult> columns, ReadOnlyCollection<
ParagraphResult
> floatingElements, Point point, bool snapToText)
923
ReadOnlyCollection<
ParagraphResult
> paragraphs;
970
private CellInfo GetCellInfoFromPoint(ReadOnlyCollection<
ParagraphResult
> paragraphs, ReadOnlyCollection<
ParagraphResult
> floatingElements, Point point, Table tableFilter)
980
ParagraphResult
paragraph = null;
1015
private CellInfo GetCellInfoFromPoint(
ParagraphResult
paragraph, Point point, Table tableFilter)
1022
ReadOnlyCollection<
ParagraphResult
> nestedParagraphs = ((ContainerParagraphResult)paragraph).Paragraphs;
1032
ReadOnlyCollection<
ParagraphResult
> nestedParagraphs = ((TableParagraphResult)paragraph).GetParagraphsFromPoint(point, false);
1090
private CellInfo GetCellInfoFromPoint(ReadOnlyCollection<ColumnResult> columns, ReadOnlyCollection<
ParagraphResult
> floatingElements, Point point, Table tableFilter)
1105
ReadOnlyCollection<
ParagraphResult
> paragraphs = (columnIndex < columns.Count && columnIndex >= 0) ? columns[columnIndex].Paragraphs : _emptyParagraphCollection;
1119
private Rect GetRectangleFromTextPosition(ReadOnlyCollection<
ParagraphResult
> paragraphs, ReadOnlyCollection<
ParagraphResult
> floatingElements, ITextPointer position)
1129
ParagraphResult
paragraph = null;
1156
private Rect GetRectangleFromTextPosition(
ParagraphResult
paragraph, ITextPointer position)
1171
ReadOnlyCollection<
ParagraphResult
> nestedParagraphs = ((ContainerParagraphResult)paragraph).Paragraphs;
1192
ReadOnlyCollection<
ParagraphResult
> nestedParagraphs = ((TableParagraphResult)paragraph).GetParagraphsFromPosition(position);
1219
ReadOnlyCollection<
ParagraphResult
> nestedFloatingElements = floaterParagraphResult.FloatingElements;
1233
ReadOnlyCollection<
ParagraphResult
> nestedFloatingElements = figureParagraphResult.FloatingElements;
1259
private Rect GetRectangleFromTextPosition(ReadOnlyCollection<ColumnResult> columns, ReadOnlyCollection<
ParagraphResult
> floatingElements, ITextPointer position)
1269
ReadOnlyCollection<
ParagraphResult
> paragraphs = (columnIndex < columns.Count && columnIndex >= 0) ? columns[columnIndex].Paragraphs : _emptyParagraphCollection;
1281
ReadOnlyCollection<
ParagraphResult
> paragraphs,
1348
ReadOnlyCollection<
ParagraphResult
> paragraphs,
1349
ReadOnlyCollection<
ParagraphResult
> floatingElements,
1375
ReadOnlyCollection<
ParagraphResult
> floatingElements,
1444
private static Rect GetLayoutBox(
ParagraphResult
paragraph)
1459
private bool IsAtCaretUnitBoundary(ReadOnlyCollection<
ParagraphResult
> paragraphs, ReadOnlyCollection<
ParagraphResult
> floatingElements, ITextPointer position)
1467
ParagraphResult
paragraph = null;
1494
private bool IsAtCaretUnitBoundary(
ParagraphResult
paragraph, ITextPointer position)
1501
ReadOnlyCollection<
ParagraphResult
> nestedParagraphs = ((ContainerParagraphResult)paragraph).Paragraphs;
1516
ReadOnlyCollection<
ParagraphResult
> nestedParagraphs = ((TableParagraphResult)paragraph).GetParagraphsFromPosition(position);
1527
ReadOnlyCollection<
ParagraphResult
> nestedFloatingElements = subpageParagraphResult.FloatingElements;
1539
ReadOnlyCollection<
ParagraphResult
> nestedFloatingElements = figureParagraphResult.FloatingElements;
1551
ReadOnlyCollection<
ParagraphResult
> nestedFloatingElements = floaterParagraphResult.FloatingElements;
1565
private bool IsAtCaretUnitBoundary(ReadOnlyCollection<ColumnResult> columns, ReadOnlyCollection<
ParagraphResult
> floatingElements, ITextPointer position)
1570
ReadOnlyCollection<
ParagraphResult
> paragraphs = (columnIndex < columns.Count && columnIndex >= 0) ? columns[columnIndex].Paragraphs : _emptyParagraphCollection;
1584
private ITextPointer GetNextCaretUnitPosition(ReadOnlyCollection<
ParagraphResult
> paragraphs, ReadOnlyCollection<
ParagraphResult
> floatingElements, ITextPointer position, LogicalDirection direction)
1592
ParagraphResult
paragraph = null;
1621
private ITextPointer GetNextCaretUnitPosition(
ParagraphResult
paragraph, ITextPointer position, LogicalDirection direction)
1627
ReadOnlyCollection<
ParagraphResult
> nestedParagraphs = ((ContainerParagraphResult)paragraph).Paragraphs;
1643
ReadOnlyCollection<
ParagraphResult
> nestedParagraphs = ((TableParagraphResult)paragraph).GetParagraphsFromPosition(position);
1654
ReadOnlyCollection<
ParagraphResult
> nestedFloatingElements = subpageParagraphResult.FloatingElements;
1666
ReadOnlyCollection<
ParagraphResult
> nestedFloatingElements = figureParagraphResult.FloatingElements;
1678
ReadOnlyCollection<
ParagraphResult
> nestedFloatingElements = floaterParagraphResult.FloatingElements;
1693
private ITextPointer GetNextCaretUnitPosition(ReadOnlyCollection<ColumnResult> columns, ReadOnlyCollection<
ParagraphResult
> floatingElements, ITextPointer position, LogicalDirection direction)
1698
ReadOnlyCollection<
ParagraphResult
> paragraphs = (columnIndex < columns.Count && columnIndex >= 0) ? columns[columnIndex].Paragraphs : _emptyParagraphCollection;
1710
private ITextPointer GetBackspaceCaretUnitPosition(ReadOnlyCollection<
ParagraphResult
> paragraphs, ReadOnlyCollection<
ParagraphResult
> floatingElements, ITextPointer position)
1718
ParagraphResult
paragraph = null;
1745
private ITextPointer GetBackspaceCaretUnitPosition(
ParagraphResult
paragraph, ITextPointer position)
1751
ReadOnlyCollection<
ParagraphResult
> nestedParagraphs = ((ContainerParagraphResult)paragraph).Paragraphs;
1766
ReadOnlyCollection<
ParagraphResult
> nestedParagraphs = ((TableParagraphResult)paragraph).GetParagraphsFromPosition(position);
1777
ReadOnlyCollection<
ParagraphResult
> nestedFloatingElements = subpageParagraphResult.FloatingElements;
1789
ReadOnlyCollection<
ParagraphResult
> nestedFloatingElements = figureParagraphResult.FloatingElements;
1801
ReadOnlyCollection<
ParagraphResult
> nestedFloatingElements = floaterParagraphResult.FloatingElements;
1815
private ITextPointer GetBackspaceCaretUnitPosition(ReadOnlyCollection<ColumnResult> columns, ReadOnlyCollection<
ParagraphResult
> floatingElements, ITextPointer position)
1820
ReadOnlyCollection<
ParagraphResult
> paragraphs = (columnIndex < columns.Count && columnIndex >= 0) ? columns[columnIndex].Paragraphs : _emptyParagraphCollection;
1972
private int GetParagraphFromPoint(ReadOnlyCollection<
ParagraphResult
> paragraphs, Point point, bool snapToText)
2100
private int GetParagraphFromPointInFloatingElements(ReadOnlyCollection<
ParagraphResult
> floatingElements, Point point, bool snapToText)
2183
private static int GetParagraphFromPosition(ReadOnlyCollection<
ParagraphResult
> paragraphs, ReadOnlyCollection<
ParagraphResult
> floatingElements, ITextPointer position, out bool isFloatingPara)
2209
private static int GetParagraphFromPosition(ReadOnlyCollection<
ParagraphResult
> paragraphs, ITextPointer position)
2280
private TextSegment GetLineRangeFromPosition(ReadOnlyCollection<
ParagraphResult
> paragraphs, ReadOnlyCollection<
ParagraphResult
> floatingElements, ITextPointer position)
2288
ParagraphResult
paragraph = null;
2315
private TextSegment GetLineRangeFromPosition(
ParagraphResult
paragraph, ITextPointer position)
2327
ReadOnlyCollection<
ParagraphResult
> nestedParagraphs = ((ContainerParagraphResult)paragraph).Paragraphs;
2360
ReadOnlyCollection<
ParagraphResult
> nestedParagraphs = ((TableParagraphResult)paragraph).GetParagraphsFromPosition(position);
2372
ReadOnlyCollection<
ParagraphResult
> nestedFloatingElements = subpageParagraphResult.FloatingElements;
2384
ReadOnlyCollection<
ParagraphResult
> nestedFloatingElements = figureParagraphResult.FloatingElements;
2396
ReadOnlyCollection<
ParagraphResult
> nestedFloatingElements = floaterParagraphResult.FloatingElements;
2419
private TextSegment GetLineRangeFromPosition(ReadOnlyCollection<ColumnResult> columns, ReadOnlyCollection<
ParagraphResult
> floatingElements, ITextPointer position)
2425
ReadOnlyCollection<
ParagraphResult
> paragraphs = (columnIndex < columns.Count && columnIndex >= 0) ? columns[columnIndex].Paragraphs : _emptyParagraphCollection;
2450
private ITextPointer GetPositionAtNextLine(ReadOnlyCollection<
ParagraphResult
> paragraphs, ITextPointer position, double suggestedX, ref int count, out bool positionFound)
2475
ReadOnlyCollection<
ParagraphResult
> nestedParagraphs = ((ContainerParagraphResult)paragraphs[paragraphIndex]).Paragraphs;
2587
ReadOnlyCollection<
ParagraphResult
> nestedParagraphs = subpageParagraphResult.Columns[0].Paragraphs;
2670
private ITextPointer GetPositionAtNextLineInFloatingElements(ReadOnlyCollection<
ParagraphResult
> floatingElements, ITextPointer position, double suggestedX, ref int count, out bool positionFound)
2675
ParagraphResult
paragraph = null;
2691
ReadOnlyCollection<
ParagraphResult
> nestedFloatingElements = figureParagraphResult.FloatingElements;
2704
ReadOnlyCollection<
ParagraphResult
> nestedFloatingElements = floaterParagraphResult.FloatingElements;
2721
private ITextPointer GetPositionAtNextLine(ReadOnlyCollection<ColumnResult> columns, ReadOnlyCollection<
ParagraphResult
> floatingElements, ITextPointer position, double suggestedX, ref int count, out double newSuggestedX, out bool positionFound)
2793
private ITextPointer GetPositionAtNextLineFromSiblingPara(ReadOnlyCollection<
ParagraphResult
> paragraphs, int paragraphIndex, double suggestedX, ref int count)
2819
ReadOnlyCollection<
ParagraphResult
> nestedParagraphs = ((ContainerParagraphResult)paragraphs[paragraphIndex]).Paragraphs;
2860
ReadOnlyCollection<
ParagraphResult
> nestedParagraphs = subpageParagraphResult.Columns[0].Paragraphs;
2885
ReadOnlyCollection<
ParagraphResult
> nestedParagraphs = subpageParagraphResult.Columns[0].Paragraphs;
3083
ReadOnlyCollection<
ParagraphResult
> paragraphs = columns[columnIndex].Paragraphs;
3138
private bool GetGlyphRunsFromParagraphs(List<GlyphRun> glyphRuns, ITextPointer start, ITextPointer end, ReadOnlyCollection<
ParagraphResult
> paragraphs)
3146
ParagraphResult
paragraph = paragraphs[index];
3165
ReadOnlyCollection<
ParagraphResult
> nestedParagraphs = ((ContainerParagraphResult)paragraph).Paragraphs;
3191
private void GetGlyphRunsFromFloatingElements(List<GlyphRun> glyphRuns, ITextPointer start, ITextPointer end, ReadOnlyCollection<
ParagraphResult
> floatingElements, out bool success)
3198
ParagraphResult
paragraph = floatingElements[index];
3208
ReadOnlyCollection<
ParagraphResult
> nestedFloatingElements = figureParagraphResult.FloatingElements;
3220
ReadOnlyCollection<
ParagraphResult
> nestedFloatingElements = floaterParagraphResult.FloatingElements;
3236
private void GetGlyphRuns(List<GlyphRun> glyphRuns, ITextPointer start, ITextPointer end, ReadOnlyCollection<ColumnResult> columns, ReadOnlyCollection<
ParagraphResult
> floatingElements)
3268
ReadOnlyCollection<
ParagraphResult
> paragraphs = columns[columnIndexStart].Paragraphs;
3486
private Rect GetRectangleFromEdge(
ParagraphResult
paragraphResult, ITextPointer textPointer)
3516
private Rect GetRectangleFromContentEdge(
ParagraphResult
paragraphResult, ITextPointer textPointer)
3568
private ReadOnlyCollection<
ParagraphResult
> _floatingElements;
3573
private static ReadOnlyCollection<
ParagraphResult
> _emptyParagraphCollection = new ReadOnlyCollection<
ParagraphResult
>(new List<
ParagraphResult
>(0));
src\Framework\MS\Internal\LayoutDump.cs (6)
690
private static void DumpParagraphResults(XmlTextWriter writer, string tagName, ReadOnlyCollection<
ParagraphResult
> paragraphs, Visual visualParent)
700
ParagraphResult
paragraph = paragraphs[index];
838
ReadOnlyCollection<
ParagraphResult
> rowParagraphs = paragraph.Paragraphs;
846
ReadOnlyCollection<
ParagraphResult
> cellParagraphs = ((RowParagraphResult)rowParagraphs[i]).CellParagraphs;
904
private static Visual DumpParagraphOffset(XmlTextWriter writer,
ParagraphResult
paragraph, Visual visualParent)
949
private static void DumpTableCell(XmlTextWriter writer,
ParagraphResult
paragraph, Visual cellVisual, Visual tableVisual)
src\Framework\MS\Internal\PtsHost\BaseParaClient.cs (1)
184
internal abstract
ParagraphResult
CreateParagraphResult();
src\Framework\MS\Internal\PtsHost\ContainerParaClient.cs (9)
282
internal override
ParagraphResult
CreateParagraphResult()
379
internal ReadOnlyCollection<
ParagraphResult
> GetChildrenParagraphResults(out bool hasTextContent)
393
return new ReadOnlyCollection<
ParagraphResult
>(new List<
ParagraphResult
>(0));
400
List<
ParagraphResult
> paragraphResults = new List<
ParagraphResult
>(arrayParaDesc.Length);
405
ParagraphResult
paragraphResult = paraClient.CreateParagraphResult();
412
return new ReadOnlyCollection<
ParagraphResult
>(paragraphResults);
466
ReadOnlyCollection<
ParagraphResult
> paragraphs = GetChildrenParagraphResults(out hasTextContent);
src\Framework\MS\Internal\PtsHost\FigureParaClient.cs (24)
538
internal override
ParagraphResult
CreateParagraphResult()
623
private ReadOnlyCollection<
ParagraphResult
> GetChildrenParagraphResults(out bool hasTextContent)
625
List<
ParagraphResult
> paragraphResults;
647
return new ReadOnlyCollection<
ParagraphResult
>(new List<
ParagraphResult
>(0));
654
paragraphResults = new List<
ParagraphResult
>(arrayParaDesc.Length);
659
ParagraphResult
paragraphResult = paraClient.CreateParagraphResult();
673
return new ReadOnlyCollection<
ParagraphResult
>(new List<
ParagraphResult
>(0));
687
return new ReadOnlyCollection<
ParagraphResult
>(new List<
ParagraphResult
>(0));
694
paragraphResults = new List<
ParagraphResult
>(arrayParaDesc.Length);
699
ParagraphResult
paragraphResult = paraClient.CreateParagraphResult();
707
return new ReadOnlyCollection<
ParagraphResult
>(paragraphResults);
794
internal ReadOnlyCollection<
ParagraphResult
> GetParagraphResultsFromColumn(IntPtr pfstrack, Vector parentOffset, out bool hasTextContent)
815
internal Geometry GetTightBoundingGeometryFromTextPositions(ReadOnlyCollection<ColumnResult> columns, ReadOnlyCollection<
ParagraphResult
> floatingElements, ITextPointer startPosition, ITextPointer endPosition, Rect visibleRect)
822
ReadOnlyCollection<
ParagraphResult
> paragraphs = (columns.Count > 0) ? columns[0].Paragraphs : new ReadOnlyCollection<
ParagraphResult
>(new List<
ParagraphResult
>(0));
856
internal ReadOnlyCollection<
ParagraphResult
> FloatingElementResults
860
List<
ParagraphResult
> floatingElements = new List<
ParagraphResult
>(0);
866
ParagraphResult
paragraphResult = floatingElementList[i].CreateParagraphResult();
870
return new ReadOnlyCollection<
ParagraphResult
>(floatingElements);
src\Framework\MS\Internal\PtsHost\FloaterParaClient.cs (24)
542
internal override
ParagraphResult
CreateParagraphResult()
628
private ReadOnlyCollection<
ParagraphResult
> GetChildrenParagraphResults(out bool hasTextContent)
630
List<
ParagraphResult
> paragraphResults;
653
return new ReadOnlyCollection<
ParagraphResult
>(new List<
ParagraphResult
>(0));
660
paragraphResults = new List<
ParagraphResult
>(arrayParaDesc.Length);
665
ParagraphResult
paragraphResult = paraClient.CreateParagraphResult();
679
return new ReadOnlyCollection<
ParagraphResult
>(new List<
ParagraphResult
>(0));
693
return new ReadOnlyCollection<
ParagraphResult
>(new List<
ParagraphResult
>(0));
700
paragraphResults = new List<
ParagraphResult
>(arrayParaDesc.Length);
705
ParagraphResult
paragraphResult = paraClient.CreateParagraphResult();
713
return new ReadOnlyCollection<
ParagraphResult
>(paragraphResults);
800
internal ReadOnlyCollection<
ParagraphResult
> GetParagraphResultsFromColumn(IntPtr pfstrack, Vector parentOffset, out bool hasTextContent)
821
internal Geometry GetTightBoundingGeometryFromTextPositions(ReadOnlyCollection<ColumnResult> columns, ReadOnlyCollection<
ParagraphResult
> floatingElements, ITextPointer startPosition, ITextPointer endPosition, Rect visibleRect)
828
ReadOnlyCollection<
ParagraphResult
> paragraphs = (columns.Count > 0) ? columns[0].Paragraphs : new ReadOnlyCollection<
ParagraphResult
>(new List<
ParagraphResult
>(0));
862
internal ReadOnlyCollection<
ParagraphResult
> FloatingElementResults
866
List<
ParagraphResult
> floatingElements = new List<
ParagraphResult
>(0);
872
ParagraphResult
paragraphResult = floatingElementList[i].CreateParagraphResult();
876
return new ReadOnlyCollection<
ParagraphResult
>(floatingElements);
src\Framework\MS\Internal\PtsHost\FlowDocumentPage.cs (12)
386
internal ReadOnlyCollection<
ParagraphResult
> FloatingElementResults
390
List<
ParagraphResult
> floatingElements = new List<
ParagraphResult
>(0);
396
ParagraphResult
paragraphResult = floatingElementList[i].CreateParagraphResult();
400
return new ReadOnlyCollection<
ParagraphResult
>(floatingElements);
594
internal ReadOnlyCollection<
ParagraphResult
> GetParagraphResultsFromColumn(IntPtr pfstrack, Vector parentOffset, out bool hasTextContent)
604
return new ReadOnlyCollection<
ParagraphResult
>(new List<
ParagraphResult
>(0));
610
List<
ParagraphResult
> paragraphResults = new List<
ParagraphResult
>(arrayParaDesc.Length);
615
ParagraphResult
paragraphResult = paraClient.CreateParagraphResult();
622
return new ReadOnlyCollection<
ParagraphResult
>(paragraphResults);
src\Framework\MS\Internal\PtsHost\SubpageParaClient.cs (11)
519
internal override
ParagraphResult
CreateParagraphResult()
683
internal ReadOnlyCollection<
ParagraphResult
> GetParagraphResultsFromColumn(IntPtr pfstrack, Vector parentOffset, out bool hasTextContent)
695
List<
ParagraphResult
> paragraphResults = new List<
ParagraphResult
>(arrayParaDesc.Length);
700
ParagraphResult
paragraphResult = paraClient.CreateParagraphResult();
707
return new ReadOnlyCollection<
ParagraphResult
>(paragraphResults);
767
internal ReadOnlyCollection<
ParagraphResult
> FloatingElementResults
771
List<
ParagraphResult
> floatingElements = new List<
ParagraphResult
>(0);
778
ParagraphResult
paragraphResult = floatingElementList[i].CreateParagraphResult();
782
return new ReadOnlyCollection<
ParagraphResult
>(floatingElements);
src\Framework\MS\Internal\PtsHost\TableParaClient.cs (18)
539
internal override
ParagraphResult
CreateParagraphResult()
739
internal ReadOnlyCollection<
ParagraphResult
> GetChildrenParagraphResults(out bool hasTextContent)
752
List<
ParagraphResult
> rowParagraphResults = new List<
ParagraphResult
>(0);
776
return new ReadOnlyCollection<
ParagraphResult
>(rowParagraphResults);
795
internal ReadOnlyCollection<
ParagraphResult
> GetChildrenParagraphResultsForRow(int rowIndex, out bool hasTextContent)
801
List<
ParagraphResult
> cellParagraphResults = new List<
ParagraphResult
>(0);
826
ParagraphResult
cellParagraphResult = cpc.CreateParagraphResult();
836
return new ReadOnlyCollection<
ParagraphResult
>(cellParagraphResults);
847
internal ReadOnlyCollection<
ParagraphResult
> GetParagraphsFromPoint(Point point, bool snapToText)
851
List<
ParagraphResult
> listResults = new List<
ParagraphResult
>(0);
858
return new ReadOnlyCollection<
ParagraphResult
>(listResults);
868
internal ReadOnlyCollection<
ParagraphResult
> GetParagraphsFromPosition(ITextPointer position)
872
List<
ParagraphResult
> listResults = new List<
ParagraphResult
>(0);
879
return new ReadOnlyCollection<
ParagraphResult
>(listResults);
src\Framework\MS\Internal\PtsHost\TextParaClient.cs (9)
377
internal override
ParagraphResult
CreateParagraphResult()
446
internal ReadOnlyCollection<
ParagraphResult
> GetFloaters()
448
List<
ParagraphResult
> floaters = null;
462
floaters = new List<
ParagraphResult
>(arrayAttachedObjectDesc.Length);
478
return (floaters != null && floaters.Count > 0) ? new ReadOnlyCollection<
ParagraphResult
>(floaters) : null;
491
internal ReadOnlyCollection<
ParagraphResult
> GetFigures()
493
List<
ParagraphResult
> figures = null;
506
figures = new List<
ParagraphResult
>(arrayAttachedObjectDesc.Length);
522
return (figures != null && figures.Count > 0) ? new ReadOnlyCollection<
ParagraphResult
>(figures) : null;
src\Framework\MS\Internal\PtsHost\UIElementParaClient.cs (1)
165
internal override
ParagraphResult
CreateParagraphResult()
src\Framework\System\Windows\Controls\Primitives\BulletDecorator.cs (1)
355
ReadOnlyCollection<
ParagraphResult
> pr = columnResult.Paragraphs;