Method SetBookMark
- Namespace
- Alternet.Editor.TextSource
- Assembly
- Alternet.Editor.v9.dll
SetBookMark(int, int)
When implemented by a class, sets the bookmark with specified index to the position specified by Line parameter.
void SetBookMark(int line, int bookMark)
Parameters
line
intThe integer value that specifies an index of the text line.
bookMark
intThe integer value that specifies bookmark index.
SetBookMark(Point, int)
When implemented by a class, sets the bookmark with specified index to the specified position.
void SetBookMark(Point position, int bookMark)
Parameters
position
PointSpecifies position of the bookmark.
bookMark
intThe integer value that specifies an index of the bookmark.
SetBookMark(IBookMark)
When implemented by a class, sets bookmark specified by bookMark parameter.
void SetBookMark(IBookMark bookMark)
Parameters
bookMark
IBookMarkSpecifies bookmark to set.
SetBookMark(Point, int, string, string, string)
When implemented by a class, sets the bookmark with specified index, name, description and url to the position specified by Point parameter.
void SetBookMark(Point position, int bookMark, string name, string description, string url)
Parameters
position
PointSpecifies position of the
BookMark
.bookMark
intThe integer value that specifies
BookMark
index.name
stringThe string value that specifies
BookMark
name.description
stringThe string value that specifies
BookMark
description.url
stringThe string value that specifies
BookMark
url.