Skip to main content
A newer version of this page is available. .

VectorLayer.ShapeTitleOptions Property

Provides presentation and visibility options for shape titles of the current vector layer.

Namespace: DevExpress.Xpf.Map

Assembly: DevExpress.Xpf.Map.v19.1.dll

Declaration

public ShapeTitleOptions ShapeTitleOptions { get; set; }

Property Value

Type Description
ShapeTitleOptions

A ShapeTitleOptions object.

Example

This example demonstrates how to display a title for shapes loaded from Shapefiles ( SouthAmerica.dbf, SouthAmerica.shp).

To accomplish this task, it is necessary to create a ShapeTitleOptions object and assign it to the VectorLayer.ShapeTitleOptions property. Then, set the ShapeTitleOptions.Visible property to true to see titles for all loaded shapes on a map.

<Window x:Class="VectorLayerTitleOptions.MainWindow"
        xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
        xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
        xmlns:dxm="http://schemas.devexpress.com/winfx/2008/xaml/map"
        Title="MainWindow" Height="350" Width="525" >
    <Grid>
        <dxm:MapControl>
            <dxm:VectorLayer >
                <dxm:VectorLayer.ShapeTitleOptions>
                    <dxm:ShapeTitleOptions Visible="True"/>
                </dxm:VectorLayer.ShapeTitleOptions>
                    <dxm:ShapefileDataAdapter FileUri="/VectorLayerTitleOptions;component/Shapefile/SouthAmerica.shp">
                    </dxm:ShapefileDataAdapter>
            </dxm:VectorLayer>
        </dxm:MapControl>
    </Grid>
</Window>

The following code snippets (auto-collected from DevExpress Examples) contain references to the ShapeTitleOptions property.

Note

The algorithm used to collect these code examples remains a work in progress. Accordingly, the links and snippets below may produce inaccurate results. If you encounter an issue with code examples below, please use the feedback form on this page to report the issue.

See Also