Table of Contents

Class TimeSpanEditor

Namespace
NanoByte.Common.Values.Design
Assembly
NanoByte.Common.WinForms.dll

An editor that can be associated with TimeSpan properties. Uses TimeSpanControl.

[PermissionSet(SecurityAction.Demand, Name = "FullTrust")]
public class TimeSpanEditor : UITypeEditor
Inheritance
object
TimeSpanEditor
Inherited Members
Extension Methods

Methods

EditValue(ITypeDescriptorContext?, IServiceProvider, object?)

Edits the specified object's value using the editor style indicated by the GetEditStyle() method.

public override object EditValue(ITypeDescriptorContext? context, IServiceProvider provider, object? value)

Parameters

context ITypeDescriptorContext

An ITypeDescriptorContext that can be used to gain additional context information.

provider IServiceProvider

An IServiceProvider that this editor can use to obtain services.

value object

The object to edit.

Returns

object

The new value of the object. If the value of the object has not changed, this should return the same object it was passed.

GetEditStyle(ITypeDescriptorContext?)

Gets the editor style used by the EditValue(IServiceProvider, object) method.

public override UITypeEditorEditStyle GetEditStyle(ITypeDescriptorContext? context)

Parameters

context ITypeDescriptorContext

An ITypeDescriptorContext that can be used to gain additional context information.

Returns

UITypeEditorEditStyle

A UITypeEditorEditStyle value that indicates the style of editor used by the EditValue(IServiceProvider, object) method. If the UITypeEditor does not support this method, then GetEditStyle() will return None.