//------------------------------------------------------------------------------
//
// Copyright (c) Microsoft Corporation. All rights reserved.
//
//------------------------------------------------------------------------------
/*
*/
namespace System.ComponentModel.Design {
using System.ComponentModel;
using System.Diagnostics;
///
///
/// Provides access
/// to get and set option values for a designer.
///
///
public interface IDesignerOptionService{
///
/// Gets the value of an option defined in this package.
///
object GetOptionValue(string pageName, string valueName);
///
/// Sets the value of an option defined in this package.
///
void SetOptionValue(string pageName, string valueName, object value);
}
}