Tutorial by Topics: m

An enum can derive from any of the following types: byte, sbyte, short, ushort, int, uint, long, ulong. The default is int, and can be changed by specifying the type in the enum definition: public enum Weekday : byte { Monday = 1, Tuesday = 2, Wednesday = 3, Thursday = 4, Friday = 5 } This is usef...
Rotate Transform transform: rotate(<angle>) Translate Transform transform: translate(<length-or-percentage> [, <length-or-percentage>]?) transform: translateX(<length-or-percentage>) transform: translateY(<length-or-percentage>) Skew Transform transform: skew(&...
Enums were added to Python in version 3.4 by PEP 435.
Official documentation Manifest File Format Format Manifest file is written in JSON (JavaScript Object Notation) format. This format differs from more loose rules of writing object literals in JavaScript code. Among important differences: Every key name and string literal must be in d...
The Polymer project consists of: Polymer library: Polymer is a lightweight library that helps you take full advantage of Web Components. With Web Components, you can create reusable custom elements that interoperate seamlessly with the browser’s built-in elements, or break your app up into righ...
If the access modifier is omitted, classes are by default internal methods are by deault private getters and setters inherit the modifier of the property, by default this is private Access modifiers on setters or getters of properties can only restrict access, not widen it: public string ...
Here you will learn about the Directives feature of AngularJS. Below you will find information on what Directives are, as well as Basic and Advanced examples of how to use them. ParameterDetailsscopeProperty to set the scope of the directive. It can be set as false, true or as an isolate scope:...
Orchard is a free, open source, community-focused Content Management System built on the ASP.NET MVC platform. Orchard is built on a modern architecture that puts extensibility up-front, as its number one concern. All components in Orchard can be replaced or extended. Content is built from easily...
This section provides an overview of what asp.net-mvc-5 is, and why a developer might want to use it. It should also mention any large subjects within asp.net-mvc-5, and link out to the related topics. Since the Documentation for asp.net-mvc-5 is new, you may need to create initial versions of t...
Polymorphism is one of main OOP(object oriented programming) concepts. Polymorphism word was derived from the greek words "poly" and "morphs". Poly means "many" and morphs means "forms" (many forms). There are two ways to perform polymorphism. Method Overloa...
CAAnimation is an abstract animation class. It provides the basic support for the CAMediaTiming and CAAction protocols. To animate Core Animation layers or Scene Kit objects, create instances of the concrete subclasses CABasicAnimation, CAKeyframeAnimation, CAAnimationGroup, or CATransition. ...
This section provides an overview of what symfony3 is, and why a developer might want to use it. It should also mention any large subjects within symfony3, and link out to the related topics. Since the Documentation for symfony3 is new, you may need to create initial versions of those related to...
Emacs is a text editor whose most prominent feature is the ability of users to programmatically customize nearly all aspects of it. This is facilitated though a special dialect of the Lisp programming language, called Emacs Lisp, created specifically for use in the Emacs editor. There are a mult...
Functions in Ruby provide organized, reusable code to preform a set of actions. Functions simplify the coding process, prevent redundant logic, and make code easier to follow. This topic describes the declaration and utilization of functions, arguments, parameters, yield statements and scope in Ruby...
In C, it is common to use return values to denote errors that occur; and to return data through the use of passed in pointers. This can be done for multiple reasons; including not having to allocate memory on the heap or using static allocation at the point where the function is called.
[Elm][1] is a friendly functional programming language compiling to JavaScript. Elm focuses on browser-based GUIs, single-page applications. Users usually praise it for: No runtime exceptions. Best compiler errors ever The ease of refactoring. Expressive type system The Elm Architecture, w...
Windows Forms ("WinForms" for short) is a GUI class library included with the .NET Framework. It is a sophisticated object-oriented wrapper around the Win32 API, allowing the development of Windows desktop and mobile applications that target the .NET Framework. WinForms is primarily eve...

Page 12 of 161