Sort Score
Result 10 results
Languages All
Labels All
Results 461 - 470 of 36,518 for

paragraph

(0.1 sec)
  1. ListFormat Class | Aspose.Words for .NET

    Aspose.Words.Lists.ListFormat class. Allows to control what list formatting is applied to a Paragraph in C#....formatting is applied to a paragraph. To learn more, visit the...IsListItem { get; } True when the paragraph has bulleted or numbered formatting...

    reference.aspose.com/words/net/aspose.words.lis...
  2. FrameFormat | Aspose.Words for Java

    Represents frame related formatting for a Paragraph in Java....related formatting for a paragraph. Remarks: This object is always...always created. If a paragraph is a frame, then all properties...

    reference.aspose.com/words/java/com.aspose.word...
  3. I am trying to set list level 1 to number style...

    I am trying to set list level 1 to number style Bullet Disk but it’s not working. Kindly help me. Please find the below mentioned input and expected output. Expected_output111.docx (14.3 KB) ListInput.docx (14.4 KB) P…...mentioned code output I got List<Paragraph> listItems = doc.GetChildNodes(NodeType...GetChildNodes(NodeType.Paragraph, true).Cast<Paragraph>().Where(p => p...

    forum.aspose.com/t/i-am-trying-to-set-list-leve...
  4. Justification | Aspose.PSD for .NET API 参考

    获取或设置对正... Paragraph . Justification = JustificationMode...portions [ 3 ]. Text != "Second paragraph\r" ) { throw new Exception...

    reference.aspose.com/psd/zh/net/aspose.psd.file...
  5. FrameFormat.height property | Aspose.Words for ...

    FrameFormat.height property. Gets the height of the specified frame....formatting properties of paragraphs that are frames. doc = aw...( MY_DIR + 'Paragraph frame.docx' ) for paragraph in doc . first_section...

    reference.aspose.com/words/python-net/aspose.wo...
  6. Aspose::Slides::IBulletFormat Class Referenceab...

    Public Member Functions | List of all members Aspose::Slides::IBulletFormat Class Reference abstract Represents parag......Reference abstract Represents paragraph bullet formatting properties...Returns the bullet type of a paragraph with no inheritance. Read...

    reference.aspose.com/slides/cpp/class/aspose.sl...
  7. CompositeNode.ChildNodes | Aspose.Words for .NE...

    CompositeNode 财产. 获取该节点的所有直接子节点... Paragraph paragraph = ( Paragraph ) doc . GetChild...( NodeType . Paragraph , 0 , true ); paragraph . AppendChild...

    reference.aspose.com/words/zh/net/aspose.words/...
  8. Aspose::Words::FrameFormat Class Reference - As...

    Represents frame related formatting for a Paragraph....related formatting for a paragraph. This object is always created...created. If a paragraph is a frame, then all properties will contain...

    reference.aspose.com/words/cpp/class/aspose.wor...
  9. FormattedFragment | Aspose.PDF for .NET API Ref...

    Represents abstract formatted fragment....a horizontal alignment of paragraph virtual Hyperlink { get; set;...that indicates whether this paragraph will be at next column. Default...

    reference.aspose.com/pdf/net/aspose.pdf/formatt...
  10. 生成word文件,有序列表如何配置序号样式和序号自增 - Free Support Forum...

    我的代码: Document document = new Document(); Section section = new Section(document); Body body = new Body(document); document.removeAllChildren(); section.appendChild(body); document.appendChild(…...appendChild(section); //第一层 Paragraph paragraph = new Paragraph(document); paragraph..."000")); ListFormat listFormat = paragraph.getListFormat(); listFormat...

    forum.aspose.com/t/word/261490