- 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.
推薦閱讀
- Vue.js 3.x快速入門
- Facebook Application Development with Graph API Cookbook
- Learning Cython Programming
- Moodle Administration Essentials
- AngularJS深度剖析與最佳實踐
- Python機器學習經(jīng)典實例
- 組態(tài)軟件技術與應用
- 大數(shù)據(jù)分析與應用實戰(zhàn):統(tǒng)計機器學習之數(shù)據(jù)導向編程
- C++寶典
- Emgu CV Essentials
- OpenCV Android開發(fā)實戰(zhàn)
- 會當凌絕頂:Java開發(fā)修行實錄
- 計算語言學導論
- SQL Server 2008實用教程(第3版)
- 構建跨平臺APP:響應式UI設計入門