Xojo Documentation
Xojo Documentation
Doc Center
Home
Download Xojo
Recent changes
MediaWiki Info
Getting Started
Get Started with Xojo
QuickStarts
Tutorials
Books
User Guide
Welcome!
Fundamentals
User Interface
Framework
Technical Information
Language Reference
Programming Language Commands
Framework
iOS Framework
Resources
System Requirements
Release Notes
Deprecations
Videos
Example Projects
FAQ
International
Feedback
About
Usage
Copyrights and Trademarks
Tools
What links here
Related changes
Special pages
Printable version
Permanent link
Page information
JSONItem.Remove
From Xojo Documentation
Method
JSONItem
.Remove
(Name As
String
)
New in 2011r2
Supported for all project types and targets.
Removes the child with the passed Name.
Examples
This example removes a value using its name:
Var
person
As
New
JSONItem
// This object is manipulated like a dictionary
person
.
Value(
"Name"
) =
"John Doe"
person
.
Value(
"Age"
) =
32
person
.
Value(
"Married"
) =
True
person
.
Value(
"Spouse"
) =
"Jane Doe"
person
.
Remove(
"Age"
)
Categories
:
New2011r2
Methods