InlineUIContainer class
Provides an inline content element that enables UIElement types to be embedded in the content of a RichTextBlock.
Inheritance
- Object
- DependencyObject
- TextElement
- Inline
- InlineUIContainer
Syntax
<InlineUIContainer .../> -or- <InlineUIContainer ...> singleChild </InlineUIContainer>
XAML Values
- singleChild
-
Exactly one child element that displays within the user interface (UI) container. This must be a type that derives from UIElement.
Attributes
- ActivatableAttribute(NTDDI_WIN8)
- ContentPropertyAttribute(Name=Child)
- MarshalingBehaviorAttribute(Agile)
- ThreadingAttribute(Both)
- VersionAttribute(NTDDI_WIN8)
- WebHostHiddenAttribute()
Members
The InlineUIContainer class has these types of members:
Constructors
The InlineUIContainer class has these constructors.
| Constructor | Description |
|---|---|
| InlineUIContainer | Initializes a new instance of the InlineUIContainer class. |
Methods
The InlineUIContainer class has these methods. It also inherits methods from the Object class.
| Method | Description |
|---|---|
| ClearValue | Clears the local value of a dependency property. (Inherited from DependencyObject) |
| FindName | Retrieves an object in the object model / runtime object graph by referencing the object's x:Name or Name attribute value. (Inherited from TextElement) |
| GetAnimationBaseValue | Returns any base value established for a dependency property, which would apply in cases where an animation is not active. (Inherited from DependencyObject) |
| GetValue | Returns the current effective value of a dependency property from a DependencyObject. (Inherited from DependencyObject) |
| OnDisconnectVisualChildren | Override this method to implement how layout and logic should behave when items are removed from a class-specific content or child property. (Inherited from TextElement) |
| ReadLocalValue | Returns the local value of a dependency property, if a local value is set. (Inherited from DependencyObject) |
| SetValue | Sets the local value of a dependency property on a DependencyObject. (Inherited from DependencyObject) |
Properties
The InlineUIContainer class has these properties.
| Property | Access type | Description |
|---|---|---|
| Read/write | Gets or sets the uniform spacing between characters, in units of 1/1000 of an em. (Inherited from TextElement) | |
| Read/write | Gets or sets the UIElement hosted by the InlineUIContainer. | |
| Read-only | Gets a TextPointer that represents the end of the content in the element. (Inherited from TextElement) | |
| Read-only | Gets a TextPointer that represents the start of content in the element. (Inherited from TextElement) | |
| Read-only | Gets the CoreDispatcher that this object is associated with. (Inherited from DependencyObject) | |
| Read-only | Gets a TextPointer that represents the position just after the end of the element. (Inherited from TextElement) | |
| Read-only | Gets a TextPointer that represents the position just before the start of the element. (Inherited from TextElement) | |
| Read/write | Gets or sets the preferred top-level font family for the content of the element. (Inherited from TextElement) | |
| Read/write | Gets or sets the font size for the content of the element. (Inherited from TextElement) | |
| Read/write | Gets or sets the glyph width of the font in a family to select. (Inherited from TextElement) | |
| Read/write | Gets or sets the font style for the content in this element. (Inherited from TextElement) | |
| Read/write | Gets or sets the top-level font weight to select from the font family for the content in this element. (Inherited from TextElement) | |
| Read/write | Gets or sets the Brush to apply to the content in this element. (Inherited from TextElement) | |
| Read/write | Gets or sets localization/globalization language information that applies to a TextElement. (Inherited from TextElement) | |
| Read-only | Gets or sets a unique identification for the object. Name can only be set from initial parsing of XAML. (Inherited from TextElement) |
Examples
The following code example shows how you can insert an image into a RichTextBlock by using InlineUIContainer.
<RichTextBlock> <Paragraph> <Italic>This is an inline image.</Italic> <InlineUIContainer> <Image Source="Assets/SmallLogo.png" Height="30" Width="30"/> </InlineUIContainer> Mauris auctor tincidunt auctor. </Paragraph> </RichTextBlock>
Requirements
|
Minimum supported client | Windows 8 [Windows Store apps only] |
|---|---|
|
Minimum supported server | Windows Server 2012 [Windows Store apps only] |
|
Namespace |
|
|
Metadata |
|
See also
Build date: 12/4/2012
