@alexey.noskov Kindly understand my concern. I want to apply the property individually for List Bullet, List Bullet 2, List Bullet 3.
Style listBullet = doc.Styles[StyleIdentifier.ListBullet];
listBullet.Font.Size = 11;
listBullet.Font.Name = "Segoe UI";
listBullet.ParagraphFormat.FirstLineIndent = ConvertUtil.InchToPoint(-0.25);
listBullet.ParagraphFormat.LeftIndent = ConvertUtil.InchToPoint(-0.25) - listBullet.ParagraphFormat.FirstLineIndent;
listBullet.ParagraphFormat.LineSpacingRule = LineSpacingRule.Multiple;
listBullet.ParagraphFormat.SpaceAfter = 3;
listBullet.ParagraphFormat.WidowControl = true;
listBullet.ParagraphFormat.TabStops.Add(ConvertUtil.InchToPoint(0.25), TabAlignment.Left, TabLeader.None);
listBullet.ListFormat.List = doc.Lists.Add(ListTemplate.BulletDefault);
listBullet.ParagraphFormat.FirstLineIndent = ConvertUtil.InchToPoint(-0.25);
listBullet.ParagraphFormat.LeftIndent = -listBullet.ParagraphFormat.FirstLineIndent;
ListBullet 2:
Style listBullet = doc.Styles[StyleIdentifier.ListBullet1];
listBullet.Font.Size = 15;
listBullet.Font.Name = "Segoe UI";
listBullet.ParagraphFormat.FirstLineIndent = ConvertUtil.InchToPoint(-0.5);
listBullet.ParagraphFormat.LeftIndent = ConvertUtil.InchToPoint(-0.5) - listBullet.ParagraphFormat.FirstLineIndent;
listBullet.ParagraphFormat.LineSpacingRule = LineSpacingRule.Multiple;
listBullet.ParagraphFormat.SpaceAfter = 13;
listBullet.ParagraphFormat.WidowControl = true;
listBullet.ParagraphFormat.TabStops.Add(ConvertUtil.InchToPoint(0.5), TabAlignment.Left, TabLeader.None);
listBullet.ListFormat.List = doc.Lists.Add(ListTemplate.BulletDefault);
listBullet.ParagraphFormat.FirstLineIndent = ConvertUtil.InchToPoint(-0.5);
listBullet.ParagraphFormat.LeftIndent = -listBullet.ParagraphFormat.FirstLineIndent;
ListBullet 3:
Style listBullet = doc.Styles[StyleIdentifier.ListBullet2];
listBullet.Font.Size = 14;
listBullet.Font.Name = "Segoe UI";
listBullet.ParagraphFormat.FirstLineIndent = ConvertUtil.InchToPoint(-0.25);
listBullet.ParagraphFormat.LeftIndent = ConvertUtil.InchToPoint(-0.25) - listBullet.ParagraphFormat.FirstLineIndent;
listBullet.ParagraphFormat.LineSpacingRule = LineSpacingRule.Multiple;
listBullet.ParagraphFormat.SpaceAfter = 16;
listBullet.ParagraphFormat.WidowControl = true;
listBullet.ParagraphFormat.TabStops.Add(ConvertUtil.InchToPoint(0.25), TabAlignment.Left, TabLeader.None);
listBullet.ListFormat.List = doc.Lists.Add(ListTemplate.BulletDefault);
listBullet.ParagraphFormat.FirstLineIndent = ConvertUtil.InchToPoint(-0.25);
listBullet.ParagraphFormat.LeftIndent = -listBullet.ParagraphFormat.FirstLineIndent;