Hi Team,
How to create the Tab stop should not be equal to 0.65 (Level 4 Tab stops: Not at 0.65"). Kindly help me asap.
I used below code but its not working not equal to 0.65 condition .but its working equal to 0.65 condition.
Style heading4 = doc.Styles[StyleIdentifier.Heading4];
heading4.ParagraphFormat.FirstLineIndent = ConvertUtil.InchToPoint(-0.6);
heading4.ParagraphFormat.LeftIndent = -heading4.ParagraphFormat.FirstLineIndent;
heading4.ParagraphFormat.KeepWithNext = false;
heading4.ParagraphFormat.KeepTogether = false;
heading4.ParagraphFormat.TabStops.Add(ConvertUtil.InchToPoint(0.65), TabAlignment.Left, TabLeader.None);
heading4.ParagraphFormat.Style.IsQuickStyle = true;