Worksheet.SmartTags Property (2007 System)
Gets a SmartTags object representing the collection of smart tags for the worksheet.
Namespace: Microsoft.Office.Tools.Excel
Assembly: Microsoft.Office.Tools.Excel.v9.0 (in Microsoft.Office.Tools.Excel.v9.0.dll)
Syntax
'Declaration
<BrowsableAttribute(False)> _
Public ReadOnly Property SmartTags As SmartTags
'Usage
Dim instance As Worksheet
Dim value As SmartTags
value = instance.SmartTags
[BrowsableAttribute(false)]
public SmartTags SmartTags { get; }
[BrowsableAttribute(false)]
public:
property SmartTags^ SmartTags {
SmartTags^ get ();
}
public function get SmartTags () : SmartTags
Property Value
Type: SmartTags
A SmartTags object representing the collection of smart tags for the worksheet.
Examples
The following code example adds a smart tag to a NamedRange control and then uses the SmartTags property to display the number of smart tags on the current worksheet.
This example is for a document-level customization.
Private Sub DisplaySmartTags()
Dim NamedRange1 As Microsoft.Office.Tools.Excel.NamedRange = _
Me.Controls.AddNamedRange(Me.Range("A1"), _
"NamedRange1")
Globals.ThisWorkbook.SmartTagOptions.EmbedSmartTags = True
Globals.ThisWorkbook.Application.SmartTagRecognizers.Recognize = True
NamedRange1.Formula = "MSFT"
Dim SmartTag1 As Excel.SmartTag = _
NamedRange1.SmartTags.Add( _
"urn:schemas-microsoft-com:smarttags#StockTickerSymbol")
MsgBox("There are " & Me.SmartTags.Count.ToString() & _
" smart tags in this document.")
End Sub
private void DisplaySmartTags()
{
Microsoft.Office.Tools.Excel.NamedRange NamedRange1 =
this.Controls.AddNamedRange(this.Range["A1", missing],
"NamedRange1");
Globals.ThisWorkbook.SmartTagOptions.EmbedSmartTags = true;
Globals.ThisWorkbook.Application.SmartTagRecognizers.Recognize = true;
NamedRange1.Formula = "MSFT";
Excel.SmartTag SmartTag1 =
NamedRange1.SmartTags.Add(
"urn:schemas-microsoft-com:smarttags#StockTickerSymbol");
MessageBox.Show("There are " + this.SmartTags.Count.ToString() +
" smart tags in this document.");
}
.NET Framework Security
- Full trust for the immediate caller. This member cannot be used by partially trusted code. For more information, see Using Libraries from Partially Trusted Code.