- 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.
推薦閱讀
- JBoss Weld CDI for Java Platform
- HTML5 移動(dòng)Web開發(fā)從入門到精通(微課精編版)
- HTML5 Mobile Development Cookbook
- UI智能化與前端智能化:工程技術(shù)、實(shí)現(xiàn)方法與編程思想
- Java Web應(yīng)用開發(fā)技術(shù)與案例教程(第2版)
- HTML5 and CSS3 Transition,Transformation,and Animation
- Big Data Analytics
- 學(xué)Python也可以這么有趣
- Learning R for Geospatial Analysis
- Test-Driven Machine Learning
- Learning Continuous Integration with TeamCity
- XML程序設(shè)計(jì)(第二版)
- IBM RUP參考與認(rèn)證指南
- Java Web應(yīng)用開發(fā)
- 深入實(shí)踐C++模板編程