Welcome to mirror list, hosted at ThFree Co, Russian Federation.

System.Windows.Media.TextFormatting.TextRunProperties.cs « PresentationCore « FPF « src - github.com/microsoft/vs-editor-api.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: da49466ccaed393dc846ceb528fed11799fd207f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
//-----------------------------------------------------------------------
//
//  Microsoft Windows Client Platform
//  Copyright (C) Microsoft Corporation
//
//  File:      TextRunProperties.cs
//
//  Contents:  Text run properties
//
//  Spec:      http://team/sites/Avalon/Specs/Text%20Formatting%20API.doc
//
//  Created:   1-7-2005 Worachai Chaoweeraprasit (wchao)
//
//------------------------------------------------------------------------


using System;
using System.Globalization;
using System.Windows;

namespace System.Windows.Media.TextFormatting
{
	/// <summary>
	/// Properties that can change from one run to the next, such as typeface or foreground brush.
	/// </summary>
	/// <remarks>
	/// The client provides a concrete implementation of this abstract run properties class. This
	/// allows client to implement their run properties the way that fits with their run formatting
	/// store.
	/// </remarks>
	public abstract class TextRunProperties
	{
	}
}