FieldAutoNumLgl Class |
Namespace: Aspose.Words.Fields
The FieldAutoNumLgl type exposes the following members.
Name | Description | |
---|---|---|
![]() | FieldAutoNumLgl | Initializes a new instance of the FieldAutoNumLgl class |
Name | Description | |
---|---|---|
![]() ![]() | DisplayResult |
Gets the text that represents the displayed field result.
(Inherited from Field.) |
![]() ![]() | End |
Gets the node that represents the field end.
(Inherited from Field.) |
![]() ![]() | Format |
Gets a FieldFormat object that provides typed access to field's formatting.
(Inherited from Field.) |
![]() ![]() | IsDirty |
Gets or sets whether the current result of the field is no longer correct (stale) due to other modifications made to the document.
(Inherited from Field.) |
![]() ![]() | IsLocked |
Gets or sets whether the field is locked (should not recalculate its result).
(Inherited from Field.) |
![]() ![]() | LocaleId |
Gets or sets the LCID of the field.
(Inherited from Field.) |
![]() ![]() | RemoveTrailingPeriod |
Gets or sets whether to display the number without a trailing period.
|
![]() ![]() | Result |
Gets or sets text that is between the field separator and field end.
(Inherited from Field.) |
![]() ![]() | Separator |
Gets the node that represents the field separator. Can be null.
(Inherited from Field.) |
![]() ![]() | SeparatorCharacter |
Gets or sets the separator character to be used.
|
![]() ![]() | Start |
Gets the node that represents the start of the field.
(Inherited from Field.) |
![]() ![]() | Type |
Gets the Microsoft Word field type.
(Inherited from Field.) |
Name | Description | |
---|---|---|
![]() | Equals | (Inherited from Object.) |
![]() ![]() | GetFieldCode |
Returns text between field start and field separator (or field end if there is no separator).
Both field code and field result of child fields are included.
(Inherited from Field.) |
![]() ![]() | GetFieldCode(Boolean) |
Returns text between field start and field separator (or field end if there is no separator).
(Inherited from Field.) |
![]() | GetHashCode | (Inherited from Object.) |
![]() | GetType | (Inherited from Object.) |
![]() ![]() | Remove |
Removes the field from the document. Returns a node right after the field. If the field's end is the last child
of its parent node, returns its parent paragraph. If the field is already removed, returns null.
(Inherited from Field.) |
![]() | ToString | (Inherited from Object.) |
![]() ![]() | Unlink |
Performs the field unlink.
(Inherited from Field.) |
![]() ![]() | Update |
Performs the field update. Throws if the field is being updated already.
(Inherited from Field.) |
![]() ![]() | Update(Boolean) |
Performs a field update. Throws if the field is being updated already.
(Inherited from Field.) |
public void FieldAutoNumLgl() { Document doc = new Document(); DocumentBuilder builder = new DocumentBuilder(doc); // This string will be our paragraph text that const string loremIpsum = "Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. " + "\nUt enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. "; // In this case our autonum legal field will number our first paragraph as "1." InsertNumberedClause(builder, "\tHeading 1", loremIpsum, StyleIdentifier.Heading1); // Our heading style number will be 1 again, so this field will keep counting headings at a heading level of 1 InsertNumberedClause(builder, "\tHeading 2", loremIpsum, StyleIdentifier.Heading1); // Our heading style is 2, setting the paragraph numbering depth to 2, setting this field's value to "2.1." InsertNumberedClause(builder, "\tHeading 3", loremIpsum, StyleIdentifier.Heading2); // Our heading style is 3, so we are going deeper again to "2.1.1." InsertNumberedClause(builder, "\tHeading 4", loremIpsum, StyleIdentifier.Heading3); // Our heading style is 2, and the next field number at that level is "2.2." InsertNumberedClause(builder, "\tHeading 5", loremIpsum, StyleIdentifier.Heading2); foreach (Field field in doc.Range.Fields) { if (field.Type == FieldType.FieldAutoNumLegal) { // By default the separator will appear as "." in the document but here it is null Assert.IsNull(((FieldAutoNumLgl)field).SeparatorCharacter); // Change the separator character and remove trailing separators ((FieldAutoNumLgl)field).SeparatorCharacter = ":"; ((FieldAutoNumLgl)field).RemoveTrailingPeriod = true; Assert.AreEqual(" AUTONUMLGL \\s : \\e", field.GetFieldCode()); } } doc.Save(ArtifactsDir + "Field.AUTONUMLGL.docx"); } /// <summary> /// Get a document builder to insert a clause numbered by an autonum legal field. /// </summary> private static void InsertNumberedClause(DocumentBuilder builder, string heading, string contents, StyleIdentifier headingStyle) { // This legal field will automatically number our clauses, taking heading style level into account builder.InsertField(FieldType.FieldAutoNumLegal, true); builder.CurrentParagraph.ParagraphFormat.StyleIdentifier = headingStyle; builder.Writeln(heading); // This text will belong to the auto num legal field above it // It will collapse when the arrow next to the corresponding autonum legal field is clicked in MS Word builder.CurrentParagraph.ParagraphFormat.StyleIdentifier = StyleIdentifier.BodyText; builder.Writeln(contents); }