Lunascape::Hilight

出典: dev.lunascape.tv

APIリファレンス  >>  Lunascape API  >>  Lunascape::Hilight

目次

概要

指定されたドキュメントの指定されたキーワードをハイライトします。

文法

void Hilight(string id, string keyword)

パラメータ(引数)

id
  ドキュメントID
keyword
  ハイライトしたいキーワード

戻り値

なし

使用例

VBScript

' アクティブなタブで「Lunascape」をハイライトします。
Dim nActiveIndex
nActiveIndex = Lunascape.ActiveIndex
Dim idDocument
idDocument = Lunascape.GetDocumentID(nActiveIndex)
Lunascape.Hilight idDocument, "Lunascape"


JScript

// アクティブなタブで「Lunascape」をハイライトします。
var nActiveIndex = Lunascape.ActiveIndex;
var idDocument = Lunascape.GetDocumentID(nActiveIndex);
Lunascape.Hilight(idDocument, "Lunascape");


APIリファレンス  >>  Lunascape API  >>  Lunascape::Hilight