15 references to Cch
PresentationFramework (15)
MS\Internal\PtsHost\BaseParagraph.cs (1)
198_lastFormatCch = Cch;
MS\Internal\PtsHost\ContainerParagraph.cs (1)
403dcpPara += para.Cch;
MS\Internal\PtsHost\TextParaClient.cs (8)
478if (HasEOP && dcpLast > Paragraph.Cch) 480ErrorHandler.Assert(dcpLast == Paragraph.Cch + Line.SyntheticCharacterLength, ErrorHandler.ParagraphCharacterCountMismatch); 1204if (Paragraph.Cch > 0) 1206lastChunk = (textDetails.u.full.dcpLim >= Paragraph.Cch); 1560if (HasEOP && lastLineResult.DcpLast > Paragraph.Cch) 1562ErrorHandler.Assert(lastLineResult.DcpLast - Line.SyntheticCharacterLength == Paragraph.Cch, ErrorHandler.ParagraphCharacterCountMismatch); 1622if (HasEOP && lastLineResult.DcpLast > Paragraph.Cch) 1624ErrorHandler.Assert(lastLineResult.DcpLast - Line.SyntheticCharacterLength == Paragraph.Cch, ErrorHandler.ParagraphCharacterCountMismatch);
MS\Internal\PtsHost\TextParagraph.cs (5)
830Invariant.Assert(dcpStart >= 0 && Cch >= dcpStart && LastFormatCch >= dcpStart); 834ddcpNew = Math.Min(ddcpNew, (Cch - dcpStart) + 1); 911if(dcpLast > this.Cch) 913dcpLast = this.Cch; // Remove end of paragraph run cp. 1414int paraCch = attachedObject.Para.Cch;