Op Englesch liesen Editéieren

Deelen iwwer


GlyphTypeface.Copyrights Property

Definition

Gets the copyright information for the GlyphTypeface object.

C#
public System.Collections.Generic.IDictionary<System.Globalization.CultureInfo,string> Copyrights { [System.Security.SecurityCritical] get; }
C#
public System.Collections.Generic.IDictionary<System.Globalization.CultureInfo,string> Copyrights { get; }

Property Value

An IDictionary<TKey,TValue> object that contains key/value pairs that represent copyright information. The key is a CultureInfo object that identifies the culture. The value is a copyright information string.

Attributes

Examples

The following example shows how to return the collection of copyright information for the GlyphTypeface object.

C#
// 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.
}

Remarks

The Copyrights property is separate from the trademark information that is access by the Trademarks property.

Applies to

Produkt Versiounen
.NET Framework 3.0, 3.5, 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8, 4.8.1
Windows Desktop 3.0, 3.1, 5, 6, 7, 8, 9, 10

See also