GlyphTypeface.Copyrights Eigenschaft

Definition

Ruft die Copyrightinformationen für das GlyphTypeface-Objekt ab.

public:
 property System::Collections::Generic::IDictionary<System::Globalization::CultureInfo ^, System::String ^> ^ Copyrights { System::Collections::Generic::IDictionary<System::Globalization::CultureInfo ^, System::String ^> ^ get(); };
public System.Collections.Generic.IDictionary<System.Globalization.CultureInfo,string> Copyrights { [System.Security.SecurityCritical] get; }
public System.Collections.Generic.IDictionary<System.Globalization.CultureInfo,string> Copyrights { get; }
[<get: System.Security.SecurityCritical>]
member this.Copyrights : System.Collections.Generic.IDictionary<System.Globalization.CultureInfo, string>
member this.Copyrights : System.Collections.Generic.IDictionary<System.Globalization.CultureInfo, string>
Public ReadOnly Property Copyrights As IDictionary(Of CultureInfo, String)

Eigenschaftswert

Ein IDictionary<TKey,TValue>-Objekt, das Schlüssel-Wert-Paare enthält, die Copyrightinformationen darstellen. Der Schlüssel ist ein CultureInfo-Objekt, das die Kultur angibt. Der Wert ist eine Zeichenfolge mit Copyrightinformationen.

Attribute

Beispiele

Das folgende Beispiel zeigt, wie die Sammlung von Urheberrechtsinformationen für das GlyphTypeface Objekt zurückgegeben wird.

// Create a glyph typeface by referencing the Pericles OpenType font.
GlyphTypeface glyphTypeface = new GlyphTypeface(new Uri("file:///C:\\WINDOWS\\Fonts\\Peric.ttf"));

// Retrieve the copyright information for the Pericles OpenType font.
IDictionary<CultureInfo, string> dictionary = glyphTypeface.Copyrights;
foreach (KeyValuePair<CultureInfo, string> kvp in dictionary)
{
    // Retrieve the key/value pair information.
}
' Create a glyph typeface by referencing the Pericles OpenType font.
Dim glyphTypeface As New GlyphTypeface(New Uri("file:///C:\WINDOWS\Fonts\Peric.ttf"))

' Retrieve the copyright information for the Pericles OpenType font.
Dim dictionary As IDictionary(Of CultureInfo, String) = glyphTypeface.Copyrights
For Each kvp As KeyValuePair(Of CultureInfo, String) In dictionary
    ' Retrieve the key/value pair information.
Next kvp

Hinweise

Die Copyrights Eigenschaft ist von den Markeninformationen getrennt, auf die die Trademarks Eigenschaft zugreifen kann.

Gilt für:

Weitere Informationen