Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
Gets a Microsoft.Office.Interop.Excel.Font that represents the font of the XmlMappedRange control.
Namespace: Microsoft.Office.Tools.Excel
Assembly: Microsoft.Office.Tools.Excel (in Microsoft.Office.Tools.Excel.dll)
Syntax
'Declaration
ReadOnly Property Font As Font
Get
Font Font { get; }
Property Value
Type: Microsoft.Office.Interop.Excel.Font
A Microsoft.Office.Interop.Excel.Font that represents the font of the XmlMappedRange control.
Examples
The following code example uses the Font property to display the current font for an XmlMappedRange. This code example assumes that the current worksheet contains an XmlMappedRange named CustomerLastNameCell.
Private Sub DisplayFontName()
MsgBox("The current font for the XmlMappedRange named " & _
"CustomerLastNameCell is: " & Me.CustomerLastNameCell.Font.Name)
End Sub
private void DisplayFontName()
{
MessageBox.Show("The current font for the XmlMappedRange named " +
"CustomerLastNameCell is: " + this.CustomerLastNameCell.Font.Name);
}
.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.