Titanium.UI.View Class API

Size: px
Start display at page:

Download "Titanium.UI.View Class API"

Transcription

1 Titanium Mobile: API Reference Titanium.UI.View Class API October 6, 2010

2 Copyright 2010 Appcelerator, Inc. All rights reserved. Appcelerator, Inc. 444 Castro Street, Suite 818, Mountain View, California No part of this publication may be reproduced, stored in a retrieval system, or transmitted, in any form or by any means, mechanical, electronic, photocopying, recording, or otherwise, without prior written permission of Appcelerator, Inc., with the following exceptions: Any person is hereby authorized to store documentation on a single computer for personal use only and to print copies of documentation for personal use provided that the documentation contains Appcelerator's copyright notice. The Appcelerator name and logo are registered trademarks of Appcelerator, Inc. Appcelerator Titanium is a trademark of Appcelerator, Inc. All other trademarks are the property of their respective owners. No licenses, express or implied, are granted with respect to any of the technology described in this document. Appcelerator retains all intellectual property rights associated with the technology described in this document. Every effort has been made to ensure that the information in this document is accurate. Appcelerator is not responsible for typographical or technical errors. Even though Appcelerator has reviewed this document, APPCELERATOR MAKES NO WARRANTY OR REPRESENTATION, EITHER EXPRESS OR IMPLIED, WITH RESPECT TO THIS DOCUMENT, ITS QUALITY, ACCURACY, MERCHANTABILITY, OR FITNESS FOR A PARTICULAR PURPOSE. AS A RESULT, THIS DOCUMENT IS PROVIDED "AS IS," AND YOU, THE READER, ARE ASSUMING THE ENTIRE RISK AS TO ITS QUALITY AND ACCURACY. IN NO EVENT WILL APPCELERATOR BE LIABLE FOR DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES RESULTING FROM ANY DEFECT OR INACCURACY IN THIS DOCUMENT, even if advised of the possibility of such damages. THE WARRANTY AND REMEDIES SET FORTH ABOVE ARE EXCLUSIVE AND IN LIEU OF ALL OTHERS, ORAL OR WRITTEN, EXPRESS OR IMPLIED. No Appcelerator dealer, agent, or employee is authorized to make any modification, extension, or addition to this warranty. Some states do not allow the exclusion or limitation of implied warranties or liability for incidental or consequential damages, so the above limitation or exclusion may not apply to you. This warranty gives you specific legal rights, and you may also have other rights which vary from state to state. 2 API, 10/6/10

3 Contents Contents Overview... 5 Titanium.UI.View Class... 6 Instance Methods Summary...6 Object Properties...6 Events...7 Event Properties...7 Methods...8 Example Programs Generic Use of View...12 Single Image View...13 Two Image View...14 Two Image Manipulation Game...16 API, 10/6/10 3

4 Contents Appcelerator Titanium API Reference 4 API, 10/6/10

5 Overview Overview A View object is created by Titanium.UI.createView and represents a generalized drawing surface or container. Many other Titanium classes are subclasses of View, including among others TableView, ImageView, Label, Button. Although these classes are specialized for different types of display elements, they all share some similarities. For example, you'll notice some overlap among instance methods, object properties, events and event properties. You can use a View in a very general way. Even if you're planning to use a TableView, ImageView, or another subclass of View, it's helpful to understand the functionality available with the generic View class. You can think of views as being arranged in a vertical stack, like papers on a desk. In general, the topmost view will be displayed, possibly obscuring views below it. For example, if you have two views arranged side-bysize, they would both be visible. However, if one view partially overlaps the other, then it's the topmost view that will be fully visible; the other view(s) would be partly blocked. You can use the zindex property to arrange multiple views within this conceptual vertical stack. The view with the highest zindex will be topmost. If you don't explicitly specify the zindex, then Titanium assumes zindex to be 0. For views with the same zindex value, the most recently added one will be topmost. API, 10/6/10 5

6 Titanium.UI.View Class Appcelerator Titanium API Reference Titanium.UI.View Class The View is an empty drawing surface or container. The View is created by the Titanium.UI.createView method. Instance Methods Summary Name add addeventlistener animate fireevent hide remove removeeventlistener show toimage Description add a child to the view hierarchy add an event listener for the instance to receive view triggered events animate the view fire a synthesized event to the views listener hide the view remove a previously added view from the view hiearchy remove a previously added event listener make the view visible return a Blob image of the rendered view Object Properties Name Type Description anchorpoint object A dictionary with properties x and y to indicate the anchor point value. Anchor specifies the position by which animation should occur. Center is 0.5, 0.5. animatedcenterpoint object read-only object with x and y properties of where the view is during animation backgroundcolor string the background color of the table view backgroundgradient object a background gradient for the view with the properties: type,startpoint,end- Point,startRadius,endRadius,backfillStart,backfillEnd,colors. backgroundimage string the background image to render in the background of the table view bordercolor string the border color of the view borderradius float the border radius of the view borderwidth float the border width of the view bottom float, string Property for the view bottom position. This position is relative to the views parent. can be either a float value or a string of the width. center object a dictionary with properties x and y to indicate the center of the views position relative to the parent view height float, string Property for the view height. Can be either float value or a string of the width. left float, string Property for the view left position. This position is relative to the views parent. can be either a float value or a string of the width. opacity float the opacity from right float, string Property for the view right position. This position is relative to the views parent. Can be either a float value or a string of the width. size object the size of the view as a dictionary of width and height properties top float, string Property for the view top position. This position is relative to the views parent. Can be either a float value or a string of the width. touchenabled boolean a boolean indicating if the view should receive touch events (true, default) or forward them to peers (false) transform object the transformation matrix to apply to the view visible boolean a boolean of the visibility of the view 6 API, 10/6/10

7 Titanium.UI.View Class Name Type Description width float,string Property for the view width. Can either be `auto`, a float value or a string of the width. zindex int the z index position relative to other sibling views; largest is topmost Events Event properties provide detail about the specific event. Note that not all properties apply to every event type. Event Type click dblclick doubletap singletap swipe touchcancel touchend touchmove touchstart twofingertap When fired fired when the device detects a click (longer than touch) against the view the device detects a double click against the view the device detects a double tap against the view the device detects a single tap against the view the device detects a swipe (left or right) against the view a touch event is interrupted by the device (for example, in circumstances such as an incoming call to allow the UI to clean up state) a touch event is completed as soon as the device detects movement of a touch; event coordinates are always relative to the view in which the initial touch occurred as soon as the device detects a gesture the device detects a two-finger tap against the view Event Properties Event Description Triggered Event Types direction direction of the swipe - either left or right swipe globalpoint a dictionary with properties x and y describing the point of the all event in screen coordinates source the source object that fired the event all type the name of the event fired all x the x point of the event, in receiving view coordinates all y the y point of the event, in receiving view coordinates all API, 10/6/10 7

8 Titanium.UI.View Class Appcelerator Titanium API Reference Methods add Add a child to the view hierarchy. Arguments Name Type Description view object the view to add to this views hiearchy Returns void Example myview.add(anotherview); myview.add(mytableview); addeventlistener Add an event listener for the instance to receive view triggered events. Arguments Name Type Description name string name of the event callback function callback function to invoke when the event is fired Returns void Example myview.addeventlistener('click', function(e) { alert('click at index: '+e.index); animate Animate the view. 8 API, 10/6/10

9 Titanium.UI.View Class Arguments Name Type Description obj object either a dictionary of animation properties or an Animation object callback function function to be invoked upon completion of the animation Returns void Example myview.animate({opacity:0,top:10,left:10,width:100,height:100,delay:150,duration:1100 fireevent Fire a synthesized event to the views listener. Arguments Name Type Description name string name of the event event object event object Returns void Example myview.fireevent('click',{index:2 hide Hide the view. Arguments This function takes no arguments. Returns void Example myview.hide(); remove Remove a previously added view from the view hiearchy. API, 10/6/10 9

10 Titanium.UI.View Class Appcelerator Titanium API Reference Arguments Name Type Description view object the view to remove from this views hiearchy Returns void Example myview.remove(myscreen1); removeeventlistener Remove a previously added event listener. Arguments Name Type Description name string name of the event callback function callback function passed in addeventlistener Returns void show Make the view visible. Arguments This function takes no arguments. Returns void Example myview.show(); toimage Return a Blob image of the rendered view. 10 API, 10/6/10

11 Titanium.UI.View Class Arguments Name Type Description f function Function to be invoked upon completion. If non-null, this method will be performed asynchronously. if null, it will be performed immediately. Returns object Example var myimage = myview.toimage(); API, 10/6/10 11

12 Example Programs Appcelerator Titanium API Reference Example Programs The following example programs illustrate View. Each of these programs replaces your app.js file in your Resources folder. You can make changes to these programs to experiment with the View, and the related classes and methods. Generic Use of View on page 12 Single Image View on page 13 Two Image View on page 14 Two Image Manipulation Game on page 16 Generic Use of View This following code shows a generic usage of the View class. It uses a combination of three views: a container, a content view (in which we would place other UI elements), and a drop shadow view. This app works for iphone 4.0 and Android APIs 1.6. // app.js // Create a container view var container = Titanium.UI.createView({ width:200, height:200, top:10, left:10 // Create a drop shadow view which we will place in the lower right corner // of the container var shadow = Titanium.UI.createView({ width:195, height:195, right:0, bottom:0, borderradius:5, opacity:0.5, backgroundcolor:"#787878" container.add(shadow); // Add a view to our container. Since this view is added to the parent last // it is z-indexed above the drop shadow view we just added. var content = Titanium.UI.createView({ width:195, height:195, top:0, left:0, borderradius:5, backgroundcolor:"#cdcdcd" 12 API, 10/6/10

13 Example Programs content.add(titanium.ui.createlabel({ text:"here is some content", textalign:"center", color:"#000" })); container.add(content); // Add it to a window, then open our app s main window var win = Titanium.UI.createWindow({ backgroundcolor:"#fff" win.add(container); win.open(); Generic Views, for Android Generic Views, for iphone Single Image View This is a minimal program that demonstrates a view. This app works for iphone 4.0 and Android APIs 1.6. // app.js // Create a container view for the image var container = Titanium.UI.createView({ API, 10/6/10 13

14 Example Programs Appcelerator Titanium API Reference width:100, height:100, top:10, left:10, backgroundcolor:"#2aaaad", backgroundimage:"myphoto1.jpg" // Create a window var mywindow = Titanium.UI.createWindow({ backgroundcolor:"#fff" // Add the image to the window and open it mywindow.add(container); mywindow.open(); Single Image View, for Android Single Image View, for iphone Two Image View This example shows how you can add two views to a window. Each view uses a JPEG as a background image. This program assumes that you have two image files named myphoto1.jpg and myphoto2.jpg in your Resources directory. (This is the same directory where your app.js is located.) This app works for iphone 4.0 and Android APIs API, 10/6/10

15 Example Programs // app.js // Create container views for each image var container1 = Titanium.UI.createView({ width:100, height:100, top:10, left:10, backgroundcolor:"#2aaaad", backgroundimage:"myphoto1.jpg" var container2 = Titanium.UI.createView({ width:100, height:100, top:10, left:200, backgroundcolor:"#2aaaad", backgroundimage:"myphoto2.jpg" // Create a window var mywindow = Titanium.UI.createWindow({ backgroundcolor:"#fff" //Add the images to the window and open mywindow.add(container1); mywindow.add(container2); mywindow.open(); API, 10/6/10 15

16 Example Programs Appcelerator Titanium API Reference Two Image View, for Android Two Image View, for iphone Two Image Manipulation Game This example uses several View methods (addeventlistener, animate, hide) to manipulate two images in a simple game called 2 Pic Monte. We also change some of the image properties as we shuffle them. The game can easily be enhanced by adding logic and more images. Two image files are used: myphoto1.jpg and myphoto2.jpg. Read the comments for more details. This app works for iphone 4.0. // app.js // 2 Pic Monte // Simple example of manipulating two images using views inside a window. // // Instructions: Using an image, create duplicates named mypic1.jpg and mypic2.jpg. // Put some type of mark on pic 2 so you can identify it but other players cannot. // Launch the app and have players try to choose the image that has the mark. // For this example, the images are the same except pic 1 is color and pic 2 is // grayscale. Pick grayscale (pic 2) and you're always the winner. // Initialize variables to be used with positioning and scoring 16 API, 10/6/10

17 Example Programs var left1 = 10; var left2 = 200; var numberlost = 0; var numbertries = 0; // Create views for each image var view1 = Titanium.UI.createView({ width:100, height:100, top:10, left:left1, backgroundimage:"pic1.jpg" var view2 = Titanium.UI.createView({ width:100, height:100, top:10, left:left2, backgroundimage:"pic2.jpg" // Add instructions using another view with a gray background var instructions = Titanium.UI.createView({ width:100, height:230, top:200, left:125, backgroundcolor:"#a1adad" //... and here is the label with the instructions instructions.add(titanium.ui.createlabel({ text:"2 Pic Monte. Click the correct pic and you're a winner!", textalign:"center", color:"#000411" })); // Create a window to hold the 2 images and the instructions var win = Titanium.UI.createWindow({ fullscreen:false, backgroundcolor:"#fff" // Add the views to the window and open win.add(view1); win.add(view2); win.add(instructions); win.open(); API, 10/6/10 17

18 Example Programs Appcelerator Titanium API Reference // Add an event listener to move the images with animation, and keep score view1.addeventlistener('click', function() { // Simple score-keeping numberlost = numberlost+1; numbertries = numbertries+1; // Shuffle first -- the "shuffling" is pretty simple for (i=0; i<=4; i++) { // Logic to determine if images have been switched // Change some of the properties during animation if (left1 == 10) { left1 = 200; left2 = 10; myduration = 200; mydelay = 300; myopacity = 20; } else { left1 = 10; left2 = 200; myduration = 1200; mydelay = 200; myopacity = 0; } if (i == 4) { myopacity = 100; } // Assemble a "you didn't win yet" message, and display an alert if (i == 0) { if (numbertries == 1) { mymessagetext = "You lose. You've tried "+numbertries+" time."; } else { mymessagetext = "You lose. You've tried "+numbertries+" times."; } } else { mymessagetext = "Keep clicking OK while I reshuffle and distract you."; } Titanium.UI.createAlertDialog({ title:'alert', message:mymessagetext }).show(); // switch images for view 1 view1.animate({ 18 API, 10/6/10

19 Example Programs opacity:myopacity, top:10, left:left1, width:100, height:100, delay:mydelay, duration:myduration } // switch images for view 2 view2.animate({ opacity:myopacity, top:10, left:left2, width:100, height:100, delay:mydelay, duration:myduration // This function gets called when the user clicks on the winning image. // The non-winning image is hidden, the instructions disappear, and the winning // message is displayed along with the score. function winner () { view1.hide(); win.remove(instructions); // You can add some logic here to increase functionality // (e.g., return to initial view). } Titanium.UI.createAlertDialog({ title:'alert', message:"you're a winner! Score: "+100*(numberTries-numberLost)/numberTries+" %" }).show(); // This event listener monitors clicks on the 2nd image, which is the winning image. // The image is exapnded with an animation, and then the winning message is displayed. view2.addeventlistener('click',function() { numbertries = numbertries+1; view2.animate({ opacity:100, top:10, left:40, delay:0, width:250, height:400, API, 10/6/10 19

20 Example Programs Appcelerator Titanium API Reference duration:3000 }, winner); Screenshots of the 2 Pic Monte app, for iphone 20 API, 10/6/10

21 Revision History 10/06/2010 Initial release API, 10/6/10 21

22 22 API, 10/6/10

Titanium.UI.TableView Class Titanium.UI.TableViewRow Class Titanium.UI.TableViewSection Class API

Titanium.UI.TableView Class Titanium.UI.TableViewRow Class Titanium.UI.TableViewSection Class API Titanium Mobile: API Reference Titanium.UI.TableView Class Titanium.UI.TableViewRow Class Titanium.UI.TableViewSection Class API October 12, 2010 Copyright 2010 Appcelerator, Inc. All rights reserved.

More information

App Store Design Specifications v2

App Store Design Specifications v2 App Store Design Specifications v2 apple 2012-10-8 Apple Inc. 2012 Apple Inc. All rights reserved. No part of this publication may be reproduced, stored in a retrieval system, or transmitted, in any form

More information

Corona SDK Getting Started Guide

Corona SDK Getting Started Guide Corona SDK Getting Started Guide November 29, 2009 2009 ANSCA Inc. All Rights Reserved. 1 Ansca Inc. 2009 Ansca Inc. All rights reserved. Lua 5.1 Copyright 1994-2008 Lua.org, PUC-Rio. Ansca, Corona and

More information

itunes Connect Transporter Quick Start Guide v2

itunes Connect Transporter Quick Start Guide v2 itunes Connect Transporter Quick Start Guide v2 apple 2013-2-05 Apple Inc. 2013 Apple Inc. All rights reserved. No part of this publication may be reproduced, stored in a retrieval system, or transmitted,

More information

Apple URL Scheme Reference

Apple URL Scheme Reference Apple URL Scheme Reference Contents Introduction 4 Organization of This Document 4 Mail Links 5 Phone Links 6 Text Links 8 Map Links 9 YouTube Links 12 itunes Links 13 Document Revision History 14 2 Tables

More information

Corona SDK Device Build Guide

Corona SDK Device Build Guide Corona SDK Device Build Guide November 29, 2009 2009 ANSCA Inc. All Rights Reserved. 1 ANSCA Inc. 2009 ANSCA Inc. All rights reserved. No part of this publication may be reproduced, stored in a retrieval

More information

ios Simulator User Guide

ios Simulator User Guide ios Simulator User Guide Contents About ios Simulator 5 At a Glance 5 Organization of This Document 6 See Also 6 Getting Started in ios Simulator 7 Access ios Simulator from Xcode 7 Running Your App in

More information

Setup guide Automatic tool measurement on AKKON CNC system

Setup guide Automatic tool measurement on AKKON CNC system TN020 AKKON CNC SYSTEM Setup guide Automatic tool measurement on AKKON CNC system Authors: Gerhard Burger Version: 1.0 Last update: 13.07.2009 File: TN020_Setup_Automatic_Tool_Measurement Attachments:

More information

digitalstrom virtual device container overview

digitalstrom virtual device container overview digitalstrom virtual device container overview digitalstrom Version: origin/master-branch * May 27, 2015 * Revision: 92f6614dc98b8d73a5e80d43763692f73a81100d 1 2015 digitalstrom AG. All rights reserved.

More information

Mobile Touch Floating Joysticks with Options version 1.1 (Unity Asset Store) by Kevin Blake

Mobile Touch Floating Joysticks with Options version 1.1 (Unity Asset Store) by Kevin Blake Mobile Touch Floating Joysticks with Options version 1.1 (Unity Asset Store) by Kevin Blake Change in version 1.1 of this document: only 2 changes to this document (the unity asset store item has not changed)

More information

CarPlay Navigation App Programming Guide. September 28, 2018

CarPlay Navigation App Programming Guide. September 28, 2018 CarPlay Navigation App Programming Guide September 28, 2018 apple Developer Table of Contents Introduction... 3 CarPlay Navigation Apps... 4 CarPlay Navigation App Entitlement... 4 Development Environment...

More information

FirePoint 8. Setup & Quick Tour

FirePoint 8. Setup & Quick Tour FirePoint 8 Setup & Quick Tour Records Management System Copyright (C), 2006 End2End, Inc. End2End, Inc. 6366 Commerce Blvd #330 Rohnert Park, CA 94928 PLEASE READ THIS LICENSE AND DISCLAIMER OF WARRANTY

More information

Interactive Notifications

Interactive Notifications Interactive Notifications Getting Started Release 2013.4 Using Care360 Interactive Notifications In This Document: About Care360 Interactive Notifications......................................................................

More information

Nokia and Nokia Connecting People are registered trademarks of Nokia Corporation

Nokia and Nokia Connecting People are registered trademarks of Nokia Corporation Nokia and Nokia Connecting People are registered trademarks of Nokia Corporation Nokia E62 Transferring data Nokia E62 Transferring data Legal Notice Copyright Nokia 2006. All rights reserved. Reproduction,

More information

User Experience: Windows & Views

User Experience: Windows & Views View Controller Programming Guide for ios User Experience: Windows & Views 2011-01-07 Apple Inc. 2011 Apple Inc. All rights reserved. No part of this publication may be reproduced, stored in a retrieval

More information

Title Page. Working with Task Workflows

Title Page. Working with Task Workflows Title Page Working with Task Workflows April 2013 Copyright & Document ID Copyright 2012-2013 Software AG USA, Inc. All rights reserved. The webmethods logo, Get There Faster, Smart Services and Smart

More information

Setting up the DR Series System on Acronis Backup & Recovery v11.5. Technical White Paper

Setting up the DR Series System on Acronis Backup & Recovery v11.5. Technical White Paper Setting up the DR Series System on Acronis Backup & Recovery v11.5 Technical White Paper Quest Engineering November 2017 2017 Quest Software Inc. ALL RIGHTS RESERVED. THIS WHITE PAPER IS FOR INFORMATIONAL

More information

User Guide. Avigilon Control Center Mobile Version for ios

User Guide. Avigilon Control Center Mobile Version for ios User Guide Avigilon Control Center Mobile Version 1.4.0.2 for ios 2011-2014 Avigilon Corporation. All rights reserved. Unless expressly granted in writing, no license is granted with respect to any copyright,

More information

Metal Shading Language for Core Image Kernels

Metal Shading Language for Core Image Kernels Metal Shading Language for Core Image Kernels apple Developer Contents Overview 3 CIKernel Function Requirements 4 Data Types 5 Destination Types.............................................. 5 Sampler

More information

R227. Terms Code Discount per Sales Code Qty Ordered AR-1227

R227. Terms Code Discount per Sales Code Qty Ordered AR-1227 DSD Business Systems MAS 90/200 Enhancements R227 Terms Code Discount per Sales Code Qty Ordered AR-1227 Version 5.10 2 Terms Code Discount per Sales Code Qty Ordered Information in this document is subject

More information

Network-MIDI Driver Installation Guide

Network-MIDI Driver Installation Guide Network-MIDI Driver Installation Guide ATTENTION SOFTWARE LICENSE AGREEMENT PLEASE READ THIS SOFTWARE LICENSE AGREEMENT ( AGREEMENT ) CAREFULLY BEFORE USING THIS SOFTWARE. YOU ARE ONLY PERMITTED TO USE

More information

Synology DiskStation

Synology DiskStation Synology DiskStation MIB Guide 2013-11-4 1 United States and other countries. rights which vary from state to state. Synology Inc. 2013 Synology Inc. Other products and company names mentioned herein are

More information

ivms-5260m Mobile Client User Manual (ios) UD06066B

ivms-5260m Mobile Client User Manual (ios) UD06066B ivms-5260m Mobile Client User Manual (ios) UD06066B User Manual COPYRIGHT 2017 Hangzhou Hikvision Digital Technology Co., Ltd. ALL RIGHTS RESERVED. Any and all information, including, among others, wordings,

More information

DME-N Network Driver Installation Guide for M7CL

DME-N Network Driver Installation Guide for M7CL DME-N Network Driver Installation Guide for M7CL ATTENTION SOFTWARE LICENSE AGREEMENT PLEASE READ THIS SOFTWARE LICENSE AGREEMENT ( AGREEMENT ) CAREFULLY BEFORE USING THIS SOFTWARE. YOU ARE ONLY PERMITTED

More information

Sonic Studio. User Manual

Sonic Studio. User Manual Sonic Studio User Manual DE157 First Edition October 2014 Copyright 2014 ASUSTeK COMPUTER INC. All Rights Reserved. No part of this manual, including the products and software described in it, may be reproduced,

More information

User Guide. Avigilon Control Center Mobile Version for Android

User Guide. Avigilon Control Center Mobile Version for Android User Guide Avigilon Control Center Mobile Version 1.4.0.2 for Android 2011-2014 Avigilon Corporation. All rights reserved. Unless expressly granted in writing, no license is granted with respect to any

More information

Quick Start Guide. BlackBerry Workspaces app for Android. Version 5.0

Quick Start Guide. BlackBerry Workspaces app for Android. Version 5.0 Quick Start Guide BlackBerry Workspaces app for Android Version 5.0 Published: 2017-01-22 SWD-20170122060917401 Contents Overview... 4 Browse workspaces, folders, and files... 5 Create new workspaces,

More information

Metal Feature Set Tables

Metal Feature Set Tables Metal Feature Set Tables apple Developer Feature Availability This table lists the availability of major Metal features. OS ios 8 ios 8 ios 9 ios 9 ios 9 ios 10 ios 10 ios 10 ios 11 ios 11 ios 11 ios 11

More information

Installation and Configuration Manual. Price List Utilities. for Microsoft Dynamics CRM Dynamics Professional Solutions Ltd 1 / 14

Installation and Configuration Manual. Price List Utilities. for Microsoft Dynamics CRM Dynamics Professional Solutions Ltd 1 / 14 Installation and Configuration Manual Price List Utilities for Microsoft Dynamics CRM 2011 Dynamics Professional Solutions Ltd 1 / 14 Copyright Warranty disclaimer Limitation of liability License agreement

More information

MOBILE DEVELOPMENT OPTIONS PRATIK PATEL CTO TripLingo

MOBILE DEVELOPMENT OPTIONS PRATIK PATEL CTO TripLingo MOBILE DEVELOPMENT OPTIONS 2014! TripLingo twitter: @prpatel TOPICS Android, ios, HTML5/CSS3, Phonegap, Titanium, and jquery Mobile native, cross-platform-to-native, and mobile web deep dive into: - phonegap

More information

TJ s Art Studio: User Experience/Functionality Document for ios App

TJ s Art Studio: User Experience/Functionality Document for ios App TJ s Art Studio: User Experience/Functionality Document for ios App 1. Landing page a. Upon launching the app, user lands at this page, which has a Start button, and links to the Meet TJ and Pals and the

More information

OnCommand Unified Manager 7.2: Best Practices Guide

OnCommand Unified Manager 7.2: Best Practices Guide Technical Report OnCommand Unified : Best Practices Guide Dhiman Chakraborty August 2017 TR-4621 Version 1.0 Abstract NetApp OnCommand Unified is the most comprehensive product for managing and monitoring

More information

Price List Utilities. For Dynamics CRM 2016

Price List Utilities. For Dynamics CRM 2016 Price List Utilities For Dynamics CRM 2016 Page 1 of 19 Price List Utilities 2016 Copyright Warranty disclaimer Limitation of liability License agreement Copyright 2016 Dynamics Professional Solutions.

More information

Report Viewer Version 8.1 Getting Started Guide

Report Viewer Version 8.1 Getting Started Guide Report Viewer Version 8.1 Getting Started Guide Entire Contents Copyright 1988-2017, CyberMetrics Corporation All Rights Reserved Worldwide. GTLRV8.1-11292017 U.S. GOVERNMENT RESTRICTED RIGHTS This software

More information

Terms of Use. Changes. General Use.

Terms of Use. Changes. General Use. Terms of Use THESE TERMS AND CONDITIONS (THE TERMS ) ARE A LEGAL CONTRACT BETWEEN YOU AND SPIN TRANSFER TECHNOLOGIES ( SPIN TRANSFER TECHNOLOGIES, STT, WE OR US ). THE TERMS EXPLAIN HOW YOU ARE PERMITTED

More information

One Identity Starling Two-Factor HTTP Module 2.1. Administration Guide

One Identity Starling Two-Factor HTTP Module 2.1. Administration Guide One Identity Starling Two-Factor HTTP Module 2.1 Administration Guide Copyright 2018 One Identity LLC. ALL RIGHTS RESERVED. This guide contains proprietary information protected by copyright. The software

More information

x10data Smart Client 7.0 for Windows Mobile Installation Guide

x10data Smart Client 7.0 for Windows Mobile Installation Guide x10data Smart Client 7.0 for Windows Mobile Installation Guide Copyright Copyright 2009 Automated Data Capture (ADC) Technologies, Incorporated. All rights reserved. Complying with all applicable copyright

More information

KACE GO Mobile App 3.1. Release Notes

KACE GO Mobile App 3.1. Release Notes KACE GO Mobile App 3.1 Release Notes Table of Contents Quest KACE GO 3.1 Mobile App Release Notes...3 About the KACE GO Mobile App... 3 Capabilities for KACE Systems Management Appliance (K1000) administrators...

More information

TrashMagic 2 User Guide

TrashMagic 2 User Guide TrashMagic 2 User Guide Licensing and Copyright Agreement This software is Copyright 2010 TED and TRI-EDRE. Except as permitted under copyright law, no part of the program or this manual may be reproduced

More information

Quest ChangeAuditor 5.1 FOR LDAP. User Guide

Quest ChangeAuditor 5.1 FOR LDAP. User Guide Quest ChangeAuditor FOR LDAP 5.1 User Guide Copyright Quest Software, Inc. 2010. All rights reserved. This guide contains proprietary information protected by copyright. The software described in this

More information

Hik-Connect Mobile Client Software (ios)

Hik-Connect Mobile Client Software (ios) User Manual V1.1.0 UD01586B 1 COPYRIGHT 2015 Hangzhou Hikvision Digital Technology Co., Ltd. ALL RIGHTS RESERVED. Any and all information, including, among others, wordings, pictures, graphs are the properties

More information

Polycom RealPresence Media Manager

Polycom RealPresence Media Manager RELEASE NOTES Software 6.0.5.6 June 2013 3725-75300-001 Rev D Polycom RealPresence Media Manager 6.0.5.6 RealPresence Media Manager 6.0.5.6 Release Notes About these Release Notes The newest release of

More information

Touch Forward. Bill Fisher. #touchfwd. Developing Awesome Cross-Browser Touch

Touch Forward. Bill Fisher. #touchfwd. Developing Awesome Cross-Browser Touch Touch Forward Developing Awesome Cross-Browser Touch Interactions Bill Fisher @fisherwebdev #touchfwd Super F*cking Important yeah, it s important. http://commons.wikimedia.org/wiki/file:071228_human_hands.jpg

More information

AlazarDSO User Guide Version August 9, 2010

AlazarDSO User Guide Version August 9, 2010 Version 1.1.25 August 9, 2010 Alazar Technologies, Inc. 6600 Trans-Canada Highway, Suite 310 Pointe-Claire, Quebec Canada H9R 4S2 Telephone: (514) 426-4899 Fax: (514) 426-2723 E-mail: support@alazartech.com

More information

Security Explorer 9.1. User Guide

Security Explorer 9.1. User Guide Security Explorer 9.1 User Guide Security Explorer 9.1 User Guide Explorer 8 Installation Guide ii 2013 by Quest Software All rights reserved. This guide contains proprietary information protected by copyright.

More information

Configuration. English. Video Management System. SeMSy III Modul Map. Rev /

Configuration. English. Video Management System. SeMSy III Modul Map. Rev / Configuration English Video Management System SeMSy III Modul Map Rev. 1.0.1 / 2014-08-31 Information about Copyright, Trademarks, Design Patents 2014 Dallmeier electronic The reproduction, distribution

More information

KACE GO Mobile App 4.0. Release Notes

KACE GO Mobile App 4.0. Release Notes KACE GO Mobile App 4.0 Release Notes Table of Contents Quest KACE GO 4.0 Mobile App Release Notes...3 About the KACE GO Mobile App... 3 Capabilities for KACE Systems Management Appliance administrators...

More information

USB Personal Video Recorder. USB Hybrid TV Tuner. (USB2.0 / 1.1 PNP TV Capture Box) UAD-880 User s Guide

USB Personal Video Recorder. USB Hybrid TV Tuner. (USB2.0 / 1.1 PNP TV Capture Box) UAD-880 User s Guide USB Personal Video Recorder USB Hybrid TV Tuner (USB2.0 / 1.1 PNP TV Capture Box) UAD-880 User s Guide User s Notice No part of this manual, including the products and software described in it, may be

More information

Quest Enterprise Reporter 2.0 Report Manager USER GUIDE

Quest Enterprise Reporter 2.0 Report Manager USER GUIDE Quest Enterprise Reporter 2.0 Report Manager USER GUIDE 2014 Quest Software, Inc. ALL RIGHTS RESERVED. This guide contains proprietary information protected by copyright. The software described in this

More information

AppleScript Finder Guide. English Dialect

AppleScript Finder Guide. English Dialect AppleScript Finder Guide English Dialect Apple Computer, Inc. 1994 Apple Computer, Inc. All rights reserved. No part of this publication or the software described in it may be reproduced, stored in a retrieval

More information

Toad Data Point - Professional Edition

Toad Data Point - Professional Edition Toad Data Point Version 3.6 New in This Release Thursday, October 23, 2014 Contents Toad Data Point - Professional Edition Toad Data Point - Base and Professional Editions Idea Pond Toad Data Point - Professional

More information

Using the IDEF0 Diagram in Innoslate

Using the IDEF0 Diagram in Innoslate Using the IDEF0 Diagram in Innoslate This document discusses how to use the IDEF0 Diagram in Innoslate. Contents IDEF0 Entities...2 IDEF0 Relationships...2 IDEF0 Interactions...3 Adding an Action...3 Adding

More information

Apple News Apple Advertising Platforms Specifications October 2018

Apple News Apple Advertising Platforms Specifications October 2018 Apple News Apple Advertising Platforms Specifications October 2018 About Advertising on Apple News Ads on Apple News can run across iphone, ipod touch, ipad, and macos devices. Ad options include a variety

More information

Veritas Desktop and Laptop Option Mobile Application Getting Started Guide

Veritas Desktop and Laptop Option Mobile Application Getting Started Guide Veritas Desktop and Laptop Option Mobile Application Getting Started Disclaimer Contents The software described in this document is furnished under a license agreement and may be used only in accordance

More information

Project Capuchin Bridging Flash Lite and Java ME in Sony Ericsson phones

Project Capuchin Bridging Flash Lite and Java ME in Sony Ericsson phones Product information August 2008 Project Capuchin Bridging Flash Lite and Java ME in Sony Ericsson phones Document history Change history 2008-05-01 Doc. No. 1212.4799.1 First version 2008-08-18 Doc. No.

More information

Westhold Sign Master User Manual. Version

Westhold Sign Master User Manual. Version Westhold Sign Master User Manual Version 1.0.0.5 This manual was written for use with the Westhold Sign Master for Windows software version 1.0.0.1. This manual and the Westhold Sign Master software described

More information

TERMS & CONDITIONS. Complied with GDPR rules and regulation CONDITIONS OF USE PROPRIETARY RIGHTS AND ACCEPTABLE USE OF CONTENT

TERMS & CONDITIONS. Complied with GDPR rules and regulation CONDITIONS OF USE PROPRIETARY RIGHTS AND ACCEPTABLE USE OF CONTENT TERMS & CONDITIONS www.karnevalkings.com (the "Site") is a website and online service owned and operated by the ViisTek Media group of companies (collectively known as "Karnevalkings.com", "we," "group",

More information

AvePoint Permissions Manager

AvePoint Permissions Manager User Guide Issued July 2017 1 Table of Contents What s New in this Guide...4 About...5 Supported Browsers...7 Submit Documentation Feedback to AvePoint...8 Integrate with AvePoint Online Services...9 AvePoint

More information

Polycom Pano. 1.1 December A

Polycom Pano. 1.1 December A USER GUIDE Polycom Pano 1.1 December 2017 3725-42667-003A Copyright 2017, Polycom, Inc. All rights reserved. No part of this document may be reproduced, translated into another language or format, or transmitted

More information

TN010 AKKON. Installation guide. (AKKON application documentation and operating system)

TN010 AKKON. Installation guide. (AKKON application documentation and operating system) TN010 AKKON Installation guide (AKKON application documentation and operating system) Authors: Gerhard Burger Version: 1.0 Last update: 04.10.2007 File: Attachments: AKKON Seite 1 von 30 Table of versions

More information

Metalogix Essentials for Office Creating a Backup

Metalogix Essentials for Office Creating a Backup Metalogix Essentials for Office 365 2.1 2018 Quest Software Inc. ALL RIGHTS RESERVED. This guide contains proprietary information protected by copyright. The software described in this guide is furnished

More information

Alarm Annunciation. Software Manual

Alarm Annunciation. Software Manual Alarm Annunciation Software Manual Software License This is a legal agreement between you, the end user, and Toye Corporation, a California corporation ("Toye"), regarding your use of the Access Central

More information

LEGAL INFORMATION. Copyright 2014 ZTE CORPORATION. All rights reserved.

LEGAL INFORMATION. Copyright 2014 ZTE CORPORATION. All rights reserved. 1 LEGAL INFORMATION Copyright 2014 ZTE CORPORATION. All rights reserved. No part of this publication may be excerpted, reproduced, translated or utilized in any form or by any means, electronic or mechanical,

More information

KACE GO Mobile App 5.0. Release Notes

KACE GO Mobile App 5.0. Release Notes KACE GO Mobile App 5.0 Release Notes Table of Contents Quest KACE GO 5.0 Mobile App Release Notes...3 About the KACE GO Mobile App... 3 Capabilities for KACE Systems Management Appliance administrators...

More information

Abstract. Introduction

Abstract. Introduction Four Steps Toward Planning a Successful Email Migration How MessageStats Can Help You Understand and Clean Up Your Source Environment to Simplify Your Move Written by Joel Blaiberg, Dell Software Abstract

More information

Issue 1 EN. Nokia and Nokia Connecting People are registered trademarks of Nokia Corporation

Issue 1 EN. Nokia and Nokia Connecting People are registered trademarks of Nokia Corporation 9243066 Issue 1 EN Nokia and Nokia Connecting People are registered trademarks of Nokia Corporation Nokia 9300i Transferring data Nokia 9300i Transferring data Legal Notice Copyright Nokia 2005. All rights

More information

User s Guide to Creating PDFs for the Sony Reader

User s Guide to Creating PDFs for the Sony Reader User s Guide to Creating PDFs for the Sony Reader 1 Table of Contents I. Introduction Portable Document Format PDF Creation Software Sony Reader screen dimensions and specifications Font recommendations

More information

End User License Agreement

End User License Agreement End User License Agreement Kyocera International, Inc. ( Kyocera ) End User License Agreement. CAREFULLY READ THE FOLLOWING TERMS AND CONDITIONS ( AGREEMENT ) BEFORE USING OR OTHERWISE ACCESSING THE SOFTWARE

More information

AhnLab Software License Agreement

AhnLab Software License Agreement AhnLab Software License Agreement IMPORTANT - READ CAREFULLY BEFORE USING THE SOFTWARE. This AhnLab Software License Agreement (this "Agreement") is a legal agreement by and between you and AhnLab, Inc.

More information

SUPPORT MATRIX. HYCU OMi Management Pack for Citrix

SUPPORT MATRIX. HYCU OMi Management Pack for Citrix HYCU OMi Management Pack for Citrix : 2.0 Product release date: October 2017 Document release data: April 2018 Legal notices Copyright notice 2014-2018 HYCU. All rights reserved. This document contains

More information

MFL QUICK START MANUAL

MFL QUICK START MANUAL MFL QUICK START MANUAL MFC 1780 If You Need to Call Customer Service Please complete the following information for future reference: Model: MFC1780 (Circle your model number) Serial Number:* Date of Purchase:

More information

APPLICATION NOTE. Atmel AT03261: SAM D20 System Interrupt Driver (SYSTEM INTERRUPT) SAM D20 System Interrupt Driver (SYSTEM INTERRUPT)

APPLICATION NOTE. Atmel AT03261: SAM D20 System Interrupt Driver (SYSTEM INTERRUPT) SAM D20 System Interrupt Driver (SYSTEM INTERRUPT) APPLICATION NOTE Atmel AT03261: SAM D20 System Interrupt Driver (SYSTEM INTERRUPT) ASF PROGRAMMERS MANUAL SAM D20 System Interrupt Driver (SYSTEM INTERRUPT) This driver for SAM D20 devices provides an

More information

Microsoft Dynamics GP. Extender User s Guide Release 9.0

Microsoft Dynamics GP. Extender User s Guide Release 9.0 Microsoft Dynamics GP Extender User s Guide Release 9.0 Copyright Copyright 2005 Microsoft Corporation. All rights reserved. Complying with all applicable copyright laws is the responsibility of the user.

More information

Tisio CE Release Notes

Tisio CE Release Notes Tisio CE Release Notes Copyright Copyright 2005, 2006, 2007 and 2008 by ThinPATH Systems, Inc. The information contained in this document is subject to change without notice. ThinPATH Systems, Inc. shall

More information

Mile Terms of Use. Effective Date: February, Version 1.1 Feb 2018 [ Mile ] Mileico.com

Mile Terms of Use. Effective Date: February, Version 1.1 Feb 2018 [ Mile ] Mileico.com Mile Terms of Use Effective Date: February, 2018 Version 1.1 Feb 2018 [ Mile ] Overview The following are the terms of an agreement between you and MILE. By accessing, or using this Web site, you acknowledge

More information

Installation and Configuration Manual

Installation and Configuration Manual Installation and Configuration Manual IMPORTANT YOU MUST READ AND AGREE TO THE TERMS AND CONDITIONS OF THE LICENSE BEFORE CONTINUING WITH THIS PROGRAM INSTALL. CIRRUS SOFT LTD End-User License Agreement

More information

Networking & Internet

Networking & Internet In App Purchase Programming Guide Networking & Internet 2011-06-17 Apple Inc. 2011 Apple Inc. All rights reserved. exclusion may not apply to you. This warranty gives you specific legal rights, and you

More information

TASCAM DR CONTROL. Contents. Trademarks

TASCAM DR CONTROL. Contents. Trademarks Contents Trademarks...1 Software License Agreement...2 Connecting a DR-22WL/DR-44WL with a smartphone by Wi-Fi...3 Installing the TASCAM DR CONTROL app...3 Connect the DR-22WL/DR-44WL with the smartphone

More information

One Identity Active Roles 7.2. Azure AD and Office 365 Management Administrator Guide

One Identity Active Roles 7.2. Azure AD and Office 365 Management Administrator Guide One Identity Active Roles 7.2 Azure AD and Office 365 Management Administrator Copyright 2017 One Identity LLC. ALL RIGHTS RESERVED. This guide contains proprietary information protected by copyright.

More information

HYCU SCOM Management Pack for F5 BIG-IP

HYCU SCOM Management Pack for F5 BIG-IP USER GUIDE HYCU SCOM Management Pack for F5 BIG-IP Product version: 5.5 Product release date: August 2018 Document edition: First Legal notices Copyright notice 2015-2018 HYCU. All rights reserved. This

More information

NCD ThinPATH PC Installation Guide and Release Notes

NCD ThinPATH PC Installation Guide and Release Notes NCD ThinPATH PC Installation Guide and Release s Copyright Copyright 2001 by Network Computing Devices, Inc. (NCD).The information contained in this document is subject to change without notice. Network

More information

DHIS2 Android user guide 2.26

DHIS2 Android user guide 2.26 DHIS2 Android user guide 2.26 2006-2016 DHIS2 Documentation Team Revision HEAD@02efc58 2018-01-02 00:22:07 Version 2.26 Warranty: THIS DOCUMENT IS PROVIDED BY THE AUTHORS ''AS IS'' AND ANY EXPRESS OR IMPLIED

More information

MDVR for the iphone. Instructions.

MDVR for the iphone. Instructions. MDVR for the iphone Instructions www.openeye.net OpenEye iphone MDVR Software Manual (v2.17) Manual Edition 30168AI MARCH 2015 2015, OPENEYE All Rights Reserved. No part of this documentation may be reproduced

More information

How to Show Grouping in Scatterplots using Statistica

How to Show Grouping in Scatterplots using Statistica How to Show Grouping in Scatterplots using Statistica Written by Dell Software Introduction A scatterplot shows the relationship between continuous variables. Showing a grouping factor in the plot adds

More information

Security Vulnerability Notice

Security Vulnerability Notice Security Vulnerability Notice SE-2013-01-ORACLE-2 [Security vulnerabilities in Oracle Java Cloud Service, Issues 29-30] DISCLAIMER INFORMATION PROVIDED IN THIS DOCUMENT IS PROVIDED "AS IS" WITHOUT WARRANTY

More information

SonicWALL CDP 2.1 Agent Tool User's Guide

SonicWALL CDP 2.1 Agent Tool User's Guide COMPREHENSIVE INTERNET SECURITY b SonicWALL CDP Series Appliances SonicWALL CDP 2.1 Agent Tool User's Guide SonicWALL CDP Agent Tool User s Guide Version 2.0 SonicWALL, Inc. 1143 Borregas Avenue Sunnyvale,

More information

Emerald. Caller-ID Search Version 1.2. Emerald Management Suite IEA Software, Inc.

Emerald. Caller-ID Search Version 1.2. Emerald Management Suite IEA Software, Inc. Emerald Caller-ID Search Version 1.2 Emerald Management Suite 1 SOFTWARE LICENSE AGREEMENT By purchasing or installing all or part of the Emerald Management Suite, you indicate your acceptance of the following

More information

User Guide. BlackBerry Docs To Go for Android. Version 1.3.0

User Guide. BlackBerry Docs To Go for Android. Version 1.3.0 User Guide BlackBerry Docs To Go for Android Version 1.3.0 Published: 2017-09-13 SWD-20170925160536936 Contents Introduction... 5 What is the BlackBerry Docs To Go app?...5 Getting started with BlackBerry

More information

GrandReporter. User Guide

GrandReporter. User Guide GrandReporter User Guide Licensing and Copyright Agreement This software is Copyright 2009 TED and TRI-EDRE. Except as permitted under copyright law, no part of the program or this manual may be reproduced

More information

Practices Guide OMRON Standard IAG Library

Practices Guide OMRON Standard IAG Library Programmable Terminal NA-series Practices Guide OMRON Standard IAG Library NA5-15[]101[] NA5-12[]101[] NA5-9[]001[] NA5-7[]001[] V415-E1-04 Introduction This guide provides reference information for the

More information

DHIS 2 Android User Manual 2.22

DHIS 2 Android User Manual 2.22 DHIS 2 Android User Manual 2.22 2006-2016 DHIS2 Documentation Team Revision 1925 Version 2.22 2016-11-23 11:33:56 Warranty: THIS DOCUMENT IS PROVIDED BY THE AUTHORS ''AS IS'' AND ANY EXPRESS OR IMPLIED

More information

Customizing an Android* OS with Intel Build Tool Suite for Android* v1.1 Process Guide

Customizing an Android* OS with Intel Build Tool Suite for Android* v1.1 Process Guide Customizing an Android* OS with Intel Build Tool Suite for Android* v1.1 Process Guide May 2015, Revision 1.5 INFORMATION IN THIS DOCUMENT IS PROVIDED IN CONNECTION WITH INTEL PRODUCTS. NO LICENSE, EXPRESS

More information

Internet & Web

Internet & Web Safari Visual Effects Guide Internet & Web 2008-11-19 Apple Inc. 2008 Apple Inc. All rights reserved. No part of this publication may be reproduced, stored in a retrieval system, or transmitted, in any

More information

Panaboard Overlayer User's Guide. Image Capture Software for Electronic Whiteboard (Panaboard)

Panaboard Overlayer User's Guide. Image Capture Software for Electronic Whiteboard (Panaboard) Panaboard Overlayer User's Guide Image Capture Software for Electronic Whiteboard (Panaboard) Contents Introduction... 3 Functional Overview... 3 Operation Flow... 3 Abbreviations... 4 Trademarks... 4

More information

Securico CCTV System. Quick Start Guide. Version 1.1

Securico CCTV System. Quick Start Guide. Version 1.1 Securico CCTV System Quick Start Guide Version 1.1 Sept 2018 User Manual COPYRIGHT 2018 Securico CCTV ALL RIGHTS RESERVED. About this Manual This manual is applicable to Securico CCTV Systems using Hikvision

More information

Migrating Performance Data to NetApp OnCommand Unified Manager 7.2

Migrating Performance Data to NetApp OnCommand Unified Manager 7.2 Technical Report Migrating Performance Data to NetApp OnCommand Unified Manager 7.2 Dhiman Chakraborty, Yuvaraju B, Tom Onacki, NetApp March 2018 TR-4589 Version 1.2 Abstract NetApp OnCommand Unified Manager

More information

Graphics & Animation: 2D Drawing

Graphics & Animation: 2D Drawing Core Graphics Framework Reference Graphics & Animation: 2D Drawing 2009-05-14 Apple Inc. 2009 Apple Inc. All rights reserved. No part of this publication may be reproduced, stored in a retrieval system,

More information

HYCU SCOM Management Pack for F5 BIG-IP

HYCU SCOM Management Pack for F5 BIG-IP HYCU SCOM Management Pack for F5 BIG-IP Product version: 5.3 Product release date: March 2018 Document edition: Second Legal notices Copyright notice 2015-2018 HYCU. All rights reserved. This document

More information

Setting up the DR Series System with vranger. Technical White Paper

Setting up the DR Series System with vranger. Technical White Paper Setting up the DR Series System with vranger Technical White Paper Quest Engineering November 2017 2017 Quest Software Inc. ALL RIGHTS RESERVED. THIS WHITE PAPER IS FOR INFORMATIONAL PURPOSES ONLY, AND

More information

RAVENNA-2-SAP Converter Installation + Operation Guide

RAVENNA-2-SAP Converter Installation + Operation Guide RAVENNA-2-SAP Converter Installation + Operation Guide Version 1.0 September 2016 RAVENNA-2-SAP Converter Guide 1 Table of Contents: 1 LEGAL 3 1.1 LICENSE 3 1.2 DISCLAIMER 3 2 INTRODUCTION 4 2.1 BACKGROUND

More information