Visual Basic (Declaration) | |
---|---|
Public Property Styles As FlowDocumentStyleCollection |
Visual Basic (Usage) | ![]() |
---|---|
Dim instance As FlowDocument Dim value As FlowDocumentStyleCollection instance.Styles = value value = instance.Styles |
C# | |
---|---|
public FlowDocumentStyleCollection Styles {get; set;} |
Delphi | |
---|---|
public read-write property Styles: FlowDocumentStyleCollection; |
JScript | |
---|---|
public function get,set Styles : FlowDocumentStyleCollection |
Managed Extensions for C++ | |
---|---|
public: __property FlowDocumentStyleCollection* get_Styles(); public: __property void set_Styles( FlowDocumentStyleCollection* value ); |
C++/CLI | |
---|---|
public: property FlowDocumentStyleCollection^ Styles { FlowDocumentStyleCollection^ get(); void set ( FlowDocumentStyleCollection^ value); } |
You can specify predefined styles that can be applied to all elements in FlowDocument, using FlowDocumentStyle collection. In FlowDocumentStyle, you can specify the fundamental element formatting, such as background, foreground, font-related properties, and border. Each FlowDocumentStyle should have a name, which will be referred from the element.
XAML | ![]() |
---|---|
<Intersoft:FlowDocument> <Intersoft:FlowDocument.Styles> <Intersoft:FlowDocumentStyle Name="HeadingStyle" Foreground="#FF632423" BorderBrush="#FF632423" BorderThickness="0 0 0 2" FontSize="30"/> <Intersoft:FlowDocumentStyle Name="ParagraphStyle" Foreground="Gray"/> </Intersoft:FlowDocument.Styles> <Intersoft:Paragraph Style="HeadingStyle" SpacingBefore="30"> <Intersoft:Run> BUNDLED APPS </Intersoft:Run> </Intersoft:Paragraph> <Intersoft:Paragraph SpacingBefore="30" Style="ParagraphStyle"> <Intersoft:Run> In addition to the tweaks in the OS, MIUI's also fiddled with some of the bundled apps as well as throwing in some handy tools. Let's look at the bundled apps first: the dialing pad does smart dialing and also supports quick dialing for your favorite buddies; whereas in texting the conversations are displayed in threads with customizable themes. For those who care, another special feature lies in the calendar app where you can also see the lunar calendar. Hey, it is a Chinese phone, after all. </Intersoft:Run> </Intersoft:Paragraph> </Intersoft:FlowDocument> |
Target Platforms: Windows 98, Windows NT 4.0, Windows Millennium Edition, Windows 2000, Windows XP Home Edition, Windows XP Professional, Windows Server 2003 family, Windows Vista, Windows Server 2008 family