15 references to Cch
PresentationFramework (15)
src\Framework\MS\Internal\PtsHost\BaseParagraph.cs (1)
202_lastFormatCch = Cch;
src\Framework\MS\Internal\PtsHost\ContainerParagraph.cs (1)
408dcpPara += para.Cch;
src\Framework\MS\Internal\PtsHost\TextParaClient.cs (8)
551if (HasEOP && dcpLast > Paragraph.Cch) 553ErrorHandler.Assert(dcpLast == Paragraph.Cch + Line.SyntheticCharacterLength, ErrorHandler.ParagraphCharacterCountMismatch); 1373if (Paragraph.Cch > 0) 1375lastChunk = (textDetails.u.full.dcpLim >= Paragraph.Cch); 1749if (HasEOP && lastLineResult.DcpLast > Paragraph.Cch) 1751ErrorHandler.Assert(lastLineResult.DcpLast - Line.SyntheticCharacterLength == Paragraph.Cch, ErrorHandler.ParagraphCharacterCountMismatch); 1818if (HasEOP && lastLineResult.DcpLast > Paragraph.Cch) 1820ErrorHandler.Assert(lastLineResult.DcpLast - Line.SyntheticCharacterLength == Paragraph.Cch, ErrorHandler.ParagraphCharacterCountMismatch);
src\Framework\MS\Internal\PtsHost\TextParagraph.cs (5)
837Invariant.Assert(dcpStart >= 0 && Cch >= dcpStart && LastFormatCch >= dcpStart); 841ddcpNew = Math.Min(ddcpNew, (Cch - dcpStart) + 1); 918if(dcpLast > this.Cch) 920dcpLast = this.Cch; // Remove end of paragraph run cp. 1422int paraCch = attachedObject.Para.Cch;