Class Bookmark
Represents the bookmark in the Word document which enclosed with BookmarkStart and BookmarkEnd.
Inheritance
System.Object
Bookmark
Inherited Members
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: Syncfusion.DocIO.DLS
Assembly: Syncfusion.DocIO.Base.dll
Syntax
public class Bookmark
Constructors
Bookmark(BookmarkStart)
Initializes a new instance of the Bookmark class with the specified BookmarkStart.
Declaration
public Bookmark(BookmarkStart start)
Parameters
Type | Name | Description |
---|---|---|
BookmarkStart | start | The BookmarkStart that represents the start of the bookmark. |
Bookmark(BookmarkStart, BookmarkEnd)
Initializes a new instance of the Bookmark class with the specified BookmarkStart and BookmarkEnd.
Declaration
public Bookmark(BookmarkStart start, BookmarkEnd end)
Parameters
Type | Name | Description |
---|---|---|
BookmarkStart | start | The BookmarkStart that represents the start of the bookmark. |
BookmarkEnd | end | The BookmarkEnd that represents the end of the bookmark. |
Properties
BookmarkEnd
Gets the bookmark end. Read-only.
Declaration
public BookmarkEnd BookmarkEnd { get; }
Property Value
Type | Description |
---|---|
BookmarkEnd | The BookmarkEnd that represents the end of the bookmark. |
BookmarkStart
Gets the bookmark start. Read-only.
Declaration
public BookmarkStart BookmarkStart { get; }
Property Value
Type | Description |
---|---|
BookmarkStart | The BookmarkStart that represents the start of the bookmark. |
FirstColumn
Declaration
public short FirstColumn { get; set; }
Property Value
Type |
---|
System.Int16 |
LastColumn
Declaration
public short LastColumn { get; set; }
Property Value
Type |
---|
System.Int16 |
Name
Gets the bookmark name. Read-only.
Declaration
public string Name { get; }
Property Value
Type | Description |
---|---|
System.String | The string that represents the bookmark name. |