- Learning ArcGIS Runtime SDK for .NET
- Ron Vincent
- 181字
- 2021-07-14 11:14:52
Conventions
In this book, you will find a number of text styles that distinguish between different kinds of information. Here are some examples of these styles and an explanation of their meaning.
A block of code is set as follows:
// create a graphics layer and give it an ID var graphicsLayer = new Esri.ArcGISRuntime.Layers.GraphicsLayer(); graphicsLayer.ID = "MyGraphicsLayer"; // add the graphics layer to the map MyMapView.Map.Layers.Add(graphicsLayer);
A block of XAML code will appear like this:
<esri:GroupLayer DisplayName="Basemap Group"> <esri:ArcGISTiledMapServiceLayer DisplayName="Imagery" IsVisible="False" ServiceUri="http://services.arcgisonline.com/ArcGIS/rest/services/World_Imagery/MapServer" /> <esri:ArcGISTiledMapServiceLayer DisplayName="Street" ServiceUri="http://services.arcgisonline.com/ArcGIS/rest/services/World_Street_Map/MapServer" /> </esri:GroupLayer>
When we wish to draw your attention to a particular part of a code block, the relevant lines or items are set in bold:
USE MyDatabase;
GO
SELECT Name, ProductNumber, ListPrice AS Price
FROM Production.Product
WHERE ProductLine = 'R'
AND DaysToManufacture < 4
ORDER BY Name ASC;
GO
New terms and important words are shown in bold. Words that you see on the screen, for example, in menus or dialog boxes, appear in the text like this: "Clicking the Next button moves you to the next screen."
Note
Warnings or important notes appear in a box like this.
Tip
Tips and tricks appear like this.
推薦閱讀
- 解構產品經理:互聯網產品策劃入門寶典
- ASP.NET MVC4框架揭秘
- Spring技術內幕:深入解析Spring架構與設計
- Debian 7:System Administration Best Practices
- Modern JavaScript Applications
- Scientific Computing with Scala
- C++從入門到精通(第5版)
- Test-Driven JavaScript Development
- HTML5+CSS3+JavaScript 從入門到項目實踐(超值版)
- QlikView Unlocked
- Learning Shiny
- 劍指大數據:企業級電商數據倉庫項目實戰(精華版)
- Scratch少兒編程高手的7個好習慣
- R語言與網站分析
- Access 2010數據庫教程(微課版)