15 references to Cch
PresentationFramework (15)
MS\Internal\PtsHost\BaseParagraph.cs (1)
196_lastFormatCch = Cch;
MS\Internal\PtsHost\ContainerParagraph.cs (1)
385dcpPara += para.Cch;
MS\Internal\PtsHost\TextParaClient.cs (8)
472if (HasEOP && dcpLast > Paragraph.Cch) 474ErrorHandler.Assert(dcpLast == Paragraph.Cch + Line.SyntheticCharacterLength, ErrorHandler.ParagraphCharacterCountMismatch); 1198if (Paragraph.Cch > 0) 1200lastChunk = (textDetails.u.full.dcpLim >= Paragraph.Cch); 1554if (HasEOP && lastLineResult.DcpLast > Paragraph.Cch) 1556ErrorHandler.Assert(lastLineResult.DcpLast - Line.SyntheticCharacterLength == Paragraph.Cch, ErrorHandler.ParagraphCharacterCountMismatch); 1616if (HasEOP && lastLineResult.DcpLast > Paragraph.Cch) 1618ErrorHandler.Assert(lastLineResult.DcpLast - Line.SyntheticCharacterLength == Paragraph.Cch, ErrorHandler.ParagraphCharacterCountMismatch);
MS\Internal\PtsHost\TextParagraph.cs (5)
807Invariant.Assert(dcpStart >= 0 && Cch >= dcpStart && LastFormatCch >= dcpStart); 811ddcpNew = Math.Min(ddcpNew, (Cch - dcpStart) + 1); 888if(dcpLast > this.Cch) 890dcpLast = this.Cch; // Remove end of paragraph run cp. 1385int paraCch = attachedObject.Para.Cch;