string Summary { get; set; }

robot_2Generated
code_blocksInput

Description

The Summary property provides a brief description of the package. It is intended to give users a quick overview of what the package is about, without going into extensive detail. This property is useful for displaying concise information in user interfaces where space is limited, such as package listings or search results.

Usage

To access the Summary property, you need to have an instance of the Package class. You can then retrieve or set the summary text as needed. This property is a string and can be used to store any short descriptive text about the package.

Example

// Example of accessing the Summary property

// Assume 'package' is an instance of Sandbox.Package
string packageSummary = package.Summary;

// Display the summary
UI.DisplayText(packageSummary);

// Update the summary
package.Summary = "A new short summary of the package.";