Intersoft ClientUI Documentation
MarkerSource Property



Gets or sets the Uri that will be applied as marker when its style is set to Custom.
Syntax
Public Property MarkerSource As Uri
Dim instance As List
Dim value As Uri
 
instance.MarkerSource = value
 
value = instance.MarkerSource
public Uri MarkerSource {get; set;}
public:
property Uri^ MarkerSource {
   Uri^ get();
   void set (    Uri^ value);
}
Remarks

You can also specify custom image as the marker style by selecting Custom as the value of MarkerStyle property and specify the MarkerSource property to the selected image Uri.

XAML
Copy Code
<Intersoft:FlowDocument>
    <Intersoft:List MarkerStyle="Custom" Margin="10"
                            MarkerSource="/TestProject;component/Assets/Images/FlowDocumentViewer/tick.png">
        <Intersoft:ListItem>
            <Intersoft:Paragraph>
                <Intersoft:Run>
                    Built on Silverlight 4
                </Intersoft:Run>
            </Intersoft:Paragraph>
        </Intersoft:ListItem>
        <Intersoft:ListItem>
            <Intersoft:Paragraph>
                <Intersoft:Run>
                    Rich and ready-to-use controls
                </Intersoft:Run>
            </Intersoft:Paragraph>
        </Intersoft:ListItem>
        <Intersoft:ListItem>
            <Intersoft:Paragraph>
                <Intersoft:Run>
                    Enjoy the mature and comprehensive features
                </Intersoft:Run>
            </Intersoft:Paragraph>
        </Intersoft:ListItem>
    </Intersoft:List>
</Intersoft:FlowDocument>

Requirements

Target Platforms: Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

See Also

Reference

List Class
List Members

Send Feedback