Glyphs.FontUri 屬性
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
取得或設定用來轉譯字元的字型位置。
public:
property Uri ^ FontUri { Uri ^ get(); void set(Uri ^ value); };
Uri FontUri();
void FontUri(Uri value);
public System.Uri FontUri { get; set; }
var uri = glyphs.fontUri;
glyphs.fontUri = uri;
Public Property FontUri As Uri
<Glyphs FontUri="uriString"/>
屬性值
物件,描述字型的統一資源識別元 (URI) 來源。 預設值是 null。
範例
此範例示範如何參考專案之 Assets 資料夾中所包含的字型檔案。 若要在專案中內嵌字型檔案,請將它設定為 Microsoft Visual Studio 中的內容建置動作。
glyph.FontUri = new Uri("ms-appx:///Assets/segoeui.ttf");