Method SetBookMark
- Namespace
- Alternet.Editor.TextSource
- Assembly
- Alternet.Editor.v10.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
lineintThe integer value that specifies an index of the text line.
bookMarkintThe 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
positionPointSpecifies position of the bookmark.
bookMarkintThe 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
bookMarkIBookMarkSpecifies 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
positionPointSpecifies position of the
BookMark.bookMarkintThe integer value that specifies
BookMarkindex.namestringThe string value that specifies
BookMarkname.descriptionstringThe string value that specifies
BookMarkdescription.urlstringThe string value that specifies
BookMarkurl.