Bookmark.Scripts Özellik
Alır bir Scripts HTML topluluğunu temsil eden bir koleksiyon komut dosyası içinde Bookmark denetim.
Ad alanı: Microsoft.Office.Tools.Word
Derleme: Microsoft.Office.Tools.Word (Microsoft.Office.Tools.Word.dll içinde)
Sözdizimi
'Bildirim
ReadOnly Property Scripts As Scripts
Scripts Scripts { get; }
Özellik Değeri
Tür: Microsoft.Office.Core.Scripts
A Scripts HTML topluluğunu temsil eden bir koleksiyon komut dosyası içinde Bookmark denetim.
Örnekler
Aşağıdaki kod örneğinde, ilk paragraf için bir komut dosyası ekler ve sonra ekler bir Bookmark ilk paragrafa denetim.Kod daha sonra pusulaları yer işaretinin bulunduğu bir ileti kutusunda görüntüler.
Bu örnek, belge düzeyinde özelleştirme içindir
Private Sub BookmarkScripts()
Dim scriptRange As Word.Range = Paragraphs(1).Range
Dim myScript As Office.Script = Me.Scripts.Add( _
scriptRange, Microsoft.Office.Core.MsoScriptLocation _
.msoScriptLocationInBody, Microsoft.Office.Core _
.MsoScriptLanguage.msoScriptLanguageVisualBasic, _
"Script ID", "Extended", "Script Text")
Dim Bookmark1 As Microsoft.Office.Tools.Word.Bookmark = _
Me.Controls.AddBookmark(Me.Paragraphs(1).Range, "Bookmark1")
MessageBox.Show("Number of scripts in bookmark1: " & _
Bookmark1.Scripts.Count.ToString)
End Sub
private void BookmarkScripts()
{
Word.Range scriptRange = Paragraphs[1].Range;
Office.Script myScript = this.Scripts.Add(scriptRange, Microsoft.Office.Core.MsoScriptLocation.msoScriptLocationInBody,
Microsoft.Office.Core.MsoScriptLanguage.msoScriptLanguageVisualBasic, "Script ID", "Extended", "Script Text");
Microsoft.Office.Tools.Word.Bookmark bookmark1 =
this.Controls.AddBookmark(Paragraphs[1].Range, "bookmark1");
MessageBox.Show("Number of scripts in bookmark1: " +
bookmark1.Scripts.Count.ToString());
}
.NET Framework Güvenliği
- Anında arayanlar için tam güven. Bu üye kısmen güvenilen kodla kullanılamaz. Daha fazla bilgi için bkz. Kısmen Güvenilen Koddan Kitaplıkları Kullanma.