ThemeInfo.GetThemeFontByName method
Gets the theme font for the specified name and language code.
Namespace: Microsoft.SharePoint.Client
Assembly: Microsoft.SharePoint.Client (in Microsoft.SharePoint.Client.dll)
Syntax
'Declaration
Public Function GetThemeFontByName ( _
name As String, _
lcid As UInteger _
) As ClientResult(Of String)
'Usage
Dim instance As ThemeInfo
Dim name As String
Dim lcid As UInteger
Dim returnValue As ClientResult(Of String)
returnValue = instance.GetThemeFontByName(name, _
lcid)
public ClientResult<string> GetThemeFontByName(
string name,
uint lcid
)
Parameters
name
Type: System.StringThe name of the font slot.
lcid
Type: System.UInt32The language code required.
Return value
Type: Microsoft.SharePoint.Client.ClientResult<String>
The string name of the font, or a null reference (Nothing in Visual Basic) if no such font slot exists.