layout: default title: SimpleLineSymbol parent: Core Classes —

dymaptic.GeoBlazor.Core

dymaptic.GeoBlazor.Core.Components.Symbols

SimpleLineSymbol Class

SimpleLineSymbol is used for rendering 2D polyline geometries in a 2D MapView. SimpleLineSymbol is also used for
rendering outlines for marker symbols and fill symbols.
ArcGIS Maps SDK for JavaScript

public class SimpleLineSymbol : dymaptic.GeoBlazor.Core.Components.Symbols.LineSymbol

Inheritance System.Object 🡒 Microsoft.AspNetCore.Components.ComponentBase 🡒 MapComponent 🡒 Symbol 🡒 LineSymbol 🡒 SimpleLineSymbol

Derived
Outline

Constructors

SimpleLineSymbol() Constructor

Parameterless constructor for using as a razor component

public SimpleLineSymbol();

SimpleLineSymbol(MapColor, Nullable, Nullable) Constructor

Constructs a new SimpleLineSymbol in code with parameters

public SimpleLineSymbol(dymaptic.GeoBlazor.Core.Objects.MapColor? color=null, System.Nullable<double> width=null, System.Nullable<dymaptic.GeoBlazor.Core.Components.Symbols.LineStyle> lineStyle=null);

Parameters

color MapColor

The color of the line symbol.

width System.Nullable<System.Double>

The width of the line symbol in points.

lineStyle System.Nullable<LineStyle>

The line style.

Properties

SimpleLineSymbol.LineStyle Property

Specifies the line style.

public System.Nullable<dymaptic.GeoBlazor.Core.Components.Symbols.LineStyle> LineStyle { get; set; }

Property Value

System.Nullable<LineStyle>

SimpleLineSymbol.Type Property

The symbol type

public override string Type { get; }

Property Value

System.String