this.visualizationLayer.Reader = new AsyncShapeFileReader();
// Using of the single extended property name.
this.visualizationLayer.Reader.ToolTipFormat = "CNTRY_NAME";
// Using of the formatted extended property.
// The '|' character is used to separate extended property name and its output format.
this.visualizationLayer.Reader.ToolTipFormat = "SUM_SQMI_A|F2";
// Format string with number of the extended properties.
this.visualizationLayer.Reader.ToolTipFormat = "{CNTRY_NAME} Miles: {SUM_SQMI_A|F2}, KM: {SUM_SQKM_A|F1}";
Me.visualizationLayer.Reader = New AsyncShapeFileReader()
' Using of the single extended property name.
Me.visualizationLayer.Reader.ToolTipFormat = "CNTRY_NAME"
' Using of the formatted extended property.
' The '|' character is used to separate extended property name and its output format.
Me.visualizationLayer.Reader.ToolTipFormat = "SUM_SQMI_A|F2"
Format string with number of the extended properties.
Me.visualizationLayer.Reader.ToolTipFormat = "{CNTRY_NAME} Miles: {SUM_SQMI_A|F2}, KM: {SUM_SQKM_A|F1}"
<telerik:AsyncShapeFileReader Source="/Telerik.RadMap.Silverlight;component/africa"
ToolTipFormat="CNTRY_NAME">
<telerik:AsyncShapeFileReader Source="/Telerik.RadMap.Silverlight;component/africa"
ToolTipFormat="SUM_SQMI_A|F2">
<telerik:AsyncShapeFileReader Source="/Telerik.RadMap.Silverlight;component/africa"
ToolTipFormat="{}{CNTRY_NAME} Miles: {SUM_SQMI_A|F2}, KM: {SUM_SQKM_A|F1}">
.
// Using of the single extended property name.
string value = extendedData["CNTRY_NAME"];
// Using of the formatted extended property.
// The '|' character is used to separate extended property name and its output format.
string value = extendedData["SUM_SQMI_A|F2"];
// Format string with number of the extended properties.
string value = extendedData["{CNTRY_NAME} Miles: {SUM_SQMI_A|F2}, KM: {SUM_SQKM_A|F1}"];
' Using of the single extended property name.
Dim value as String = extendedData("CNTRY_NAME")
' Using of the formatted extended property.
' The '|' character is used to separate extended property name and its output format.
Dim value as String = extendedData("SUM_SQMI_A|F2")
Format string with number of the extended properties.
Dim value as String = extendedData("{CNTRY_NAME} Miles: {SUM_SQMI_A|F2}, KM: {SUM_SQKM_A|F1}")
// Using of the single extended property name.
string value = extendedData["CNTRY_NAME"];
// Using of the formatted extended property.
// The '|' character is used to separate extended property name and its output format.
string value = extendedData["SUM_SQMI_A|F2"];
// Format string with number of the extended properties.
string value = extendedData["{CNTRY_NAME} Miles: {SUM_SQMI_A|F2}, KM: {SUM_SQKM_A|F1}"];
' Using of the single extended property name.
Dim value as String = extendedData("CNTRY_NAME")
' Using of the formatted extended property.
' The '|' character is used to separate extended property name and its output format.
Dim value as String = extendedData("SUM_SQMI_A|F2")
Format string with number of the extended properties.
Dim value as String = extendedData("{CNTRY_NAME} Miles: {SUM_SQMI_A|F2}, KM: {SUM_SQKM_A|F1}")
Loading by
Loading by file path.
Loading by URI.
Limitation: The image cannot have transparent background, by default it will be white.
See "Rendering to image" remarks section on
Limitation: The image cannot have transparent background, by default it will be white.
See "Rendering to image" remarks section on
Limitation: The image cannot have transparent background, by default it will be white.
See "Rendering to image" remarks section on
hello world