Training
Certifications
Books
Special Offers
Community




 
Microsoft® .NET Framework 1.1 Class Library Reference Volume 5: System.Web
Author Microsoft Corporation
Pages 2768
Disk N/A
Level All Levels
Published 03/26/2003
ISBN 9780735618169
Price $79.99
To see this book's discounted price, select a reseller below.
 

More Information

About the Book
Table of Contents
Sample Chapter
Related Series
Related Books
About the Author

Support: Book & CD

Rate this book
Barnes Noble Amazon Quantum Books

 


Chapter : System.Web.UI.Design.WebControls Namespace continued


ListItemsCollectionEditor Class

Provides a user interface for editing the items collection of a list.

System.Object
   System.Drawing.Design.UITypeEditor
      System.ComponentModel.Design.CollectionEditor
         System.Web.UI.Design.WebControls.ListItemsCollection-
         Editor

[Visual Basic]

Public Class ListItemsCollectionEditor
Inherits CollectionEditor

[C#]

public class ListItemsCollectionEditor : CollectionEditor

[C++]

public __gc class ListItemsCollectionEditor : public
CollectionEditor

[JScript]

public class ListItemsCollectionEditor extends CollectionEditor

Thread Safety

Any public static (Shared in Visual Basic) members of this type are safe for multithreaded operations. Any instance members are not guaranteed to be thread safe.

Requirements

Namespace: System.Web.UI.Design.WebControls

Platforms: Windows 2000, Windows XP Professional, Windows Server 2003 family

Assembly: System.Design (in System.Design.dll)

ListItemsCollectionEditor Constructor

Initializes a new instance of the ListItemsCollectionEditor class.

[Visual Basic]

Public Sub New( _
ByVal type As Type _
)

[C#]

public ListItemsCollectionEditor(
Type type
);

[C++]

public: ListItemsCollectionEditor(
Type* type
);

[JScript]

public function ListItemsCollectionEditor(
type : Type
);

Parameters

type

   The type of the collection to edit.

Requirements

Platforms: Windows 2000, Windows XP Professional, Windows Server 2003 family

.NET Framework Security: 

  • Full trust for the immediate caller. This member cannot be used by partially trusted code.

ListItemsCollectionEditor.CanSelectMultipleInstances Method

Indicates whether multiple items in the list can be selected at the same time.

[Visual Basic]

Overrides Protected Function CanSelectMultipleInstances() As Boolean

[C#]

protected override bool CanSelectMultipleInstances();

[C++]

protected: bool CanSelectMultipleInstances();

[JScript]

protected override function CanSelectMultipleInstances() : Boolean;

Return Value

true if multiple items can be selected at the same time; otherwise, false.

Requirements

Platforms: Windows 2000, Windows XP Professional, Windows Server 2003 family

.NET Framework Security: 

  • Full trust for the immediate caller. This member cannot be used by partially trusted code.

PanelDesigner Class

Extends design-time behavior for the Panel Web server control.

System.Object
   System.ComponentModel.Design.ComponentDesigner
      System.Web.UI.Design.HtmlControlDesigner
         System.Web.UI.Design.ControlDesigner
            System.Web.UI.Design.ReadWriteControlDesigner
               System.Web.UI.Design.WebControls.PanelDesigner

[Visual Basic]

Public Class PanelDesigner
Inherits ReadWriteControlDesigner

[C#]

public class PanelDesigner : ReadWriteControlDesigner

[C++]

public __gc class PanelDesigner : public ReadWriteControlDesigner

[JScript]

public class PanelDesigner extends ReadWriteControlDesigner

Thread Safety

Any public static (Shared in Visual Basic) members of this type are safe for multithreaded operations. Any instance members are not guaranteed to be thread safe.

Requirements

Namespace: System.Web.UI.Design.WebControls

Platforms: Windows 2000, Windows XP Professional, Windows Server 2003 family

Assembly: System.Design (in System.Design.dll)

PanelDesigner Constructor

Initializes a new instance of the PanelDesigner class.

[Visual Basic]

Public Sub New()

[C#]

public PanelDesigner();

[C++]

public: PanelDesigner();

[JScript]

public function PanelDesigner();

Remarks

The default constructor initializes any fields to their default values.

Requirements

Platforms: Windows 2000, Windows XP Professional, Windows Server 2003 family

.NET Framework Security: 

  • Full trust for the immediate caller. This member cannot be used by partially trusted code.

PanelDesigner.MapPropertyToStyle Method

Maps a specified property and value to a specified HTML style.

[Visual Basic]

Overrides Protected Sub MapPropertyToStyle( _
ByVal propName As String, _
ByVal varPropValue As Object _
)

[C#]

protected override void MapPropertyToStyle(
string propName,
object varPropValue
);

[C++]

protected: void MapPropertyToStyle(
String* propName,
Object* varPropValue
);

[JScript]

protected override function MapPropertyToStyle(
propName : String,
varPropValue : Object
);

Parameters

propName

   The property name.

varPropValue

   The property value.

Requirements

Platforms: Windows 2000, Windows XP Professional, Windows Server 2003 family

.NET Framework Security: 

  • Full trust for the immediate caller. This member cannot be used by partially trusted code.

PanelDesigner.OnBehaviorAttached Method

Provides notification when a behavior is attached to the designer.

[Visual Basic]

Overrides Protected Sub OnBehaviorAttached()

[C#]

protected override void OnBehaviorAttached();

[C++]

protected: void OnBehaviorAttached();

[JScript]

protected override function OnBehaviorAttached();

Requirements

Platforms: Windows 2000, Windows XP Professional, Windows Server 2003 family

.NET Framework Security: 

  • Full trust for the immediate caller. This member cannot be used by partially trusted code.

RegexEditorDialog Class

This type supports the .NET Framework infrastructure and is not intended to be used directly from your code.

[Visual Basic]

Public Class RegexEditorDialog
Inherits Form

[C#]

public class RegexEditorDialog : Form

[C++]

public __gc class RegexEditorDialog : public Form

[JScript]

public class RegexEditorDialog extends Form

RegexEditorDialog Constructor

This member supports the .NET Framework infrastructure and is not intended to be used directly from your code.

[Visual Basic]

Public Sub New( _
ByVal site As ISite _
)

[C#]

public RegexEditorDialog(
ISite site
);

[C++]

public: RegexEditorDialog(
ISite* site
);

[JScript]

public function RegexEditorDialog(
site : ISite
);

RegexEditorDialog.RegularExpression Property

This member supports the .NET Framework infrastructure and is not intended to be used directly from your code.

[Visual Basic]

Public Property RegularExpression As String

[C#]

public string RegularExpression {get; set;}

[C++]

public: __property String* get_RegularExpression();
public: __property void set_RegularExpression(String*);

[JScript]

public function get RegularExpression() : String;
public function set RegularExpression(String);

RegexEditorDialog.cmdHelp_Click Method

This member supports the .NET Framework infrastructure and is not intended to be used directly from your code.

[Visual Basic]

Protected Sub cmdHelp_Click( _
ByVal sender As Object, _
ByVal e As EventArgs _
)

[C#]

protected void cmdHelp_Click(
object sender,
EventArgs e
);

[C++]

protected: void cmdHelp_Click(
Object* sender,
EventArgs* e
);

[JScript]

protected function cmdHelp_Click(
sender : Object,
e : EventArgs
);

RegexEditorDialog.cmdOK_Click Method

This member supports the .NET Framework infrastructure and is not intended to be used directly from your code.

[Visual Basic]

Protected Sub cmdOK_Click( _
ByVal sender As Object, _
ByVal e As EventArgs _
)

[C#]

protected void cmdOK_Click(
object sender,
EventArgs e
);

[C++]

protected: void cmdOK_Click(
Object* sender,
EventArgs* e
);

[JScript]

protected function cmdOK_Click(
sender : Object,
e : EventArgs
);

RegexEditorDialog.cmdTestValidate_Click Method

This member supports the .NET Framework infrastructure and is not intended to be used directly from your code.

[Visual Basic]

Protected Sub cmdTestValidate_Click( _
ByVal sender As Object, _
ByVal args As EventArgs _
)

[C#]

protected void cmdTestValidate_Click(
object sender,
EventArgs args
);

[C++]

protected: void cmdTestValidate_Click(
Object* sender,
EventArgs* args
);

[JScript]

protected function cmdTestValidate_Click(
sender : Object,
args : EventArgs
);

RegexEditorDialog.Dispose Method

This member supports the .NET Framework infrastructure and is not intended to be used directly from your code.

Overload List

This member overrides Form.Dispose.

   [Visual Basic] Overloads Overrides Protected Sub Dispose(Boolean)

   [C#] protected override void Dispose(bool);

   [C++] protected: void Dispose(bool);

   [JScript] protected override function Dispose(Boolean);

This member supports the .NET Framework infrastructure and is not intended to be used directly from your code.

   [Visual Basic] Overloads Public Overridable Sub Dispose() Implements IDisposable.Dispose

   [C#] public virtual void Dispose();

   [C++] public: virtual void Dispose();

   [JScript] public function Dispose();

RegexEditorDialog.Dispose Method (Boolean)

This member overrides Form.Dispose.

[Visual Basic]

Overrides Overloads Protected Sub Dispose( _
ByVal disposing As Boolean _
)

[C#]

protected override void Dispose(
bool disposing
);

[C++]

protected: void Dispose(
bool disposing
);

[JScript]

protected override function Dispose(
disposing : Boolean
);

Requirements

Platforms: Windows 2000, Windows XP Professional, Windows Server 2003 family

.NET Framework Security: 

  • Full trust for the immediate caller. This member cannot be used by partially trusted code.

RegexEditorDialog.lstStandardExpressions_SelectedIndexChanged Method

This member supports the .NET Framework infrastructure and is not intended to be used directly from your code.

[Visual Basic]

Protected Sub lstStandardExpressions_SelectedIndexChanged( _
ByVal sender As Object, _
ByVal e As EventArgs _
)

[C#]

protected void lstStandardExpressions_SelectedIndexChanged(
object sender,
EventArgs e
);

[C++]

protected: void lstStandardExpressions_SelectedIndexChanged(
Object* sender,
EventArgs* e
);

[JScript]

protected function lstStandardExpressions_SelectedIndexChanged(
sender : Object,
e : EventArgs
);

RegexEditorDialog.RegexTypeEditor_Activated Method

This member supports the .NET Framework infrastructure and is not intended to be used directly from your code.

[Visual Basic]

Protected Sub RegexTypeEditor_Activated( _
ByVal sender As Object, _
ByVal e As EventArgs _
)

[C#]

protected void RegexTypeEditor_Activated(
object sender,
EventArgs e
);

[C++]

protected: void RegexTypeEditor_Activated(
Object* sender,
EventArgs* e
);

[JScript]

protected function RegexTypeEditor_Activated(
sender : Object,
e : EventArgs
);

RegexEditorDialog.txtExpression_TextChanged Method

This member supports the .NET Framework infrastructure and is not intended to be used directly from your code.

[Visual Basic]

Protected Sub txtExpression_TextChanged( _
ByVal sender As Object, _
ByVal e As EventArgs _
)

[C#]

protected void txtExpression_TextChanged(
object sender,
EventArgs e
);

[C++]

protected: void txtExpression_TextChanged(
Object* sender,
EventArgs* e
);

[JScript]

protected function txtExpression_TextChanged(
sender : Object,
e : EventArgs
);

RegexTypeEditor Class

Provides a user interface for editing regular expressions.

System.Object
   System.Drawing.Design.UITypeEditor
      System.Web.UI.Design.WebControls.RegexTypeEditor

[Visual Basic]

Public Class RegexTypeEditor
Inherits UITypeEditor

[C#]

public class RegexTypeEditor : UITypeEditor

[C++]

public __gc class RegexTypeEditor : public UITypeEditor

[JScript]

public class RegexTypeEditor extends UITypeEditor

Thread Safety

Any public static (Shared in Visual Basic) members of this type are safe for multithreaded operations. Any instance members are not guaranteed to be thread safe.

Requirements

Namespace: System.Web.UI.Design.WebControls

Platforms: Windows 2000, Windows XP Professional, Windows Server 2003 family

Assembly: System.Design (in System.Design.dll)

RegexTypeEditor Constructor

Initializes a new instance of the RegexTypeEditor class.

[Visual Basic]

Public Sub New()

[C#]

public RegexTypeEditor();

[C++]

public: RegexTypeEditor();

[JScript]

public function RegexTypeEditor();

Remarks

The default constructor initializes any fields to their default values.

Requirements

Platforms: Windows 2000, Windows XP Professional, Windows Server 2003 family

.NET Framework Security: 

  • Full trust for the immediate caller. This member cannot be used by partially trusted code.

RegexTypeEditor.EditValue Method

Edits the value of the specified object using the specified service provider and context.

Overload List

Edits the value of the specified object using the specified service provider and context.

   [Visual Basic] Overloads Overrides Public Function EditValue(ITypeDescriptorContext, IServiceProvider, Object) As Object

   [C#] public override object EditValue(ITypeDescriptorContext, IServiceProvider, object);

   [C++] public: Object* EditValue(ITypeDescriptorContext*, IServiceProvider*, Object*);

   [JScript] public override function EditValue(ITypeDescriptorContext, IServiceProvider, Object) : Object;

Inherited from UITypeEditor.

   [Visual Basic] Overloads Public Function EditValue(IServiceProvider, Object) As Object

   [C#] public object EditValue(IServiceProvider, object);

   [C++] public: Object* EditValue(IServiceProvider*, Object*);

   [JScript] public function EditValue(IServiceProvider, Object) : Object;

RegexTypeEditor.EditValue Method (ITypeDescriptorContext, IServiceProvider, Object)

Edits the value of the specified object using the specified service provider and context.

[Visual Basic]

Overrides Overloads Public Function EditValue( _
ByVal context As ITypeDescriptorContext, _
ByVal provider As IServiceProvider, _
ByVal value As Object _
) As Object

[C#]

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

[C++]

public: Object* EditValue(
ITypeDescriptorContext* context,
IServiceProvider* provider,
Object* value
);

[JScript]

public override function EditValue(
context : ITypeDescriptorContext,
provider : IServiceProvider,
value : Object
) : Object;

Parameters

context

   An ITypeDescriptorContext that can provide additional context information.

provider

   A service provider.

value

   The object to edit the value of.

Return Value

The new value of the object. If the value of the object hasn't changed, this method returns the same object it was passed.

Requirements

Platforms: Windows 2000, Windows XP Professional, Windows Server 2003 family

.NET Framework Security: 

  • Full trust for the immediate caller. This member cannot be used by partially trusted code.

RegexTypeEditor.GetEditStyle Method

Gets the editor style used by the EditValue method.

Overload List

Gets the editor style used by the EditValue method.

   [Visual Basic] Overloads Overrides Public Function GetEditStyle(ITypeDescriptorContext) As UITypeEditorEditStyle

   [C#] public override UITypeEditorEditStyle GetEditStyle(ITypeDescriptorContext);

   [C++] public: UITypeEditorEditStyle GetEditStyle(ITypeDescriptorContext*);

   [JScript] public override function GetEditStyle(ITypeDescriptorContext) : UITypeEditorEditStyle;

Inherited from UITypeEditor.

   [Visual Basic] Overloads Public Function GetEditStyle() As UITypeEditorEditStyle

   [C#] public UITypeEditorEditStyle GetEditStyle();

   [C++] public: UITypeEditorEditStyle GetEditStyle();

   [JScript] public function GetEditStyle() : UITypeEditorEditStyle;

RegexTypeEditor.GetEditStyle Method (ITypeDescriptorContext)

Gets the editor style used by the EditValue method.

[Visual Basic]

Overrides Overloads Public Function GetEditStyle( _
ByVal context As ITypeDescriptorContext _
) As UITypeEditorEditStyle

[C#]

public override UITypeEditorEditStyle GetEditStyle(
ITypeDescriptorContext context
);

[C++]

public: UITypeEditorEditStyle GetEditStyle(
ITypeDescriptorContext* context
);

[JScript]

public override function GetEditStyle(
context : ITypeDescriptorContext
) : UITypeEditorEditStyle;

Parameters

context

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

Return Value

A UITypeEditorEditStyle that indicates the editor style.

Requirements

Platforms: Windows 2000, Windows XP Professional, Windows Server 2003 family

.NET Framework Security: 

  • Full trust for the immediate caller. This member cannot be used by partially trusted code.

RepeaterDesigner Class

This type supports the .NET Framework infrastructure and is not intended to be used directly from your code.

[Visual Basic]

Public Class RepeaterDesigner
Inherits ControlDesigner
Implements IDataSourceProvider

[C#]

public class RepeaterDesigner : ControlDesigner,
IDataSourceProvider

[C++]

public __gc class RepeaterDesigner : public ControlDesigner,
IDataSourceProvider

[JScript]

public class RepeaterDesigner extends ControlDesigner implements
IDataSourceProvider

RepeaterDesigner Constructor

This member supports the .NET Framework infrastructure and is not intended to be used directly from your code.

[Visual Basic]

Public Sub New()

[C#]

public RepeaterDesigner();

[C++]

public: RepeaterDesigner();

[JScript]

public function RepeaterDesigner();

RepeaterDesigner.DataMember Property

This member supports the .NET Framework infrastructure and is not intended to be used directly from your code.

[Visual Basic]

Public Property DataMember As String

[C#]

public string DataMember {get; set;}

[C++]

public: __property String* get_DataMember();
public: __property void set_DataMember(String*);

[JScript]

public function get DataMember() : String;
public function set DataMember(String);

RepeaterDesigner.DataSource Property

This member supports the .NET Framework infrastructure and is not intended to be used directly from your code.

[Visual Basic]

Public Property DataSource As String

[C#]

public string DataSource {get; set;}

[C++]

public: __property String* get_DataSource();
public: __property void set_DataSource(String*);

[JScript]

public function get DataSource() : String;
public function set DataSource(String);

RepeaterDesigner.TemplatesExist Property

This member supports the .NET Framework infrastructure and is not intended to be used directly from your code.

[Visual Basic]

Protected ReadOnly Property TemplatesExist As Boolean

[C#]

protected bool TemplatesExist {get;}

[C++]

protected: __property bool get_TemplatesExist();

[JScript]

protected function get TemplatesExist() : Boolean;

RepeaterDesigner.Dispose Method

This member supports the .NET Framework infrastructure and is not intended to be used directly from your code.

Overload List

This member supports the .NET Framework infrastructure and is not intended to be used directly from your code.

   [Visual Basic] Overloads Overrides Protected Sub Dispose(Boolean)

   [C#] protected override void Dispose(bool);

   [C++] protected: void Dispose(bool);

   [JScript] protected override function Dispose(Boolean);

This member supports the .NET Framework infrastructure and is not intended to be used directly from your code.

   [Visual Basic] Overloads Public Overridable Sub Dispose() Implements IDisposable.Dispose

   [C#] public virtual void Dispose();

   [C++] public: virtual void Dispose();

   [JScript] public function Dispose();

RepeaterDesigner.Dispose Method (Boolean)

This member supports the .NET Framework infrastructure and is not intended to be used directly from your code.

[Visual Basic]

Overrides Overloads Protected Sub Dispose( _
ByVal disposing As Boolean _
)

[C#]

protected override void Dispose(
bool disposing
);

[C++]

protected: void Dispose(
bool disposing
);

[JScript]

protected override function Dispose(
disposing : Boolean
);

RepeaterDesigner.GetDesignTimeDataSource Method

This member supports the .NET Framework infrastructure and is not intended to be used directly from your code.

Overload List

This member supports the .NET Framework infrastructure and is not intended to be used directly from your code.

   [Visual Basic] Overloads Protected Function GetDesignTimeDataSource(Integer) As IEnumerable

   [C#] protected IEnumerable GetDesignTimeDataSource(int);

   [C++] protected: IEnumerable* GetDesignTimeDataSource(int);

   [JScript] protected function GetDesignTimeDataSource(int) : IEnumerable;

This member supports the .NET Framework infrastructure and is not intended to be used directly from your code.

   [Visual Basic] Overloads Protected Function GetDesignTimeDataSource(IEnumerable, Integer) As IEnumerable

   [C#] protected IEnumerable GetDesignTimeDataSource(IEnumerable, int);

   [C++] protected: IEnumerable* GetDesignTimeDataSource(IEnumerable*, int);

   [JScript] protected function GetDesignTimeDataSource(IEnumerable, int) : IEnumerable;

RepeaterDesigner.GetDesignTimeDataSource Method (Int32)

This member supports the .NET Framework infrastructure and is not intended to be used directly from your code.

[Visual Basic]

Overloads Protected Function GetDesignTimeDataSource( _
ByVal minimumRows As Integer _
) As IEnumerable

[C#]

protected IEnumerable GetDesignTimeDataSource(
int minimumRows
);

[C++]

protected: IEnumerable* GetDesignTimeDataSource(
int minimumRows
);

[JScript]

protected function GetDesignTimeDataSource(
minimumRows : int
) : IEnumerable;

RepeaterDesigner.GetDesignTimeDataSource Method (IEnumerable, Int32)

This member supports the .NET Framework infrastructure and is not intended to be used directly from your code.

[Visual Basic]

Overloads Protected Function GetDesignTimeDataSource( _
ByVal selectedDataSource As IEnumerable, _
ByVal minimumRows As Integer _
) As IEnumerable

[C#]

protected IEnumerable GetDesignTimeDataSource(
IEnumerable selectedDataSource,
int minimumRows
);

[C++]

protected: IEnumerable* GetDesignTimeDataSource(
IEnumerable* selectedDataSource,
int minimumRows
);

[JScript]

protected function GetDesignTimeDataSource(
selectedDataSource : IEnumerable,
minimumRows : int
) : IEnumerable;

RepeaterDesigner.GetDesignTimeHtml Method

This member supports the .NET Framework infrastructure and is not intended to be used directly from your code.

[Visual Basic]

Overrides Public Function GetDesignTimeHtml() As String

[C#]

public override string GetDesignTimeHtml();

[C++]

public: String* GetDesignTimeHtml();

[JScript]

public override function GetDesignTimeHtml() : String;

RepeaterDesigner.GetEmptyDesignTimeHtml Method

This member supports the .NET Framework infrastructure and is not intended to be used directly from your code.

[Visual Basic]

Overrides Protected Function GetEmptyDesignTimeHtml() As String

[C#]

protected override string GetEmptyDesignTimeHtml();

[C++]

protected: String* GetEmptyDesignTimeHtml();

[JScript]

protected override function GetEmptyDesignTimeHtml() : String;

RepeaterDesigner.GetErrorDesignTimeHtml Method

This member supports the .NET Framework infrastructure and is not intended to be used directly from your code.

[Visual Basic]

Overrides Protected Function GetErrorDesignTimeHtml( _
ByVal e As Exception _
) As String

[C#]

protected override string GetErrorDesignTimeHtml(
Exception e
);

[C++]

protected: String* GetErrorDesignTimeHtml(
Exception* e
);

[JScript]

protected override function GetErrorDesignTimeHtml(
e : Exception
) : String;

RepeaterDesigner.GetResolvedSelectedDataSource Method

This member supports the .NET Framework infrastructure and is not intended to be used directly from your code.

[Visual Basic]

Public Overridable Function GetResolvedSelectedDataSource() As _
IEnumerable Implements _
IDataSourceProvider.GetResolvedSelectedDataSource

[C#]

public virtual IEnumerable GetResolvedSelectedDataSource();

[C++]

public: virtual IEnumerable* GetResolvedSelectedDataSource();

[JScript]

public function GetResolvedSelectedDataSource() : IEnumerable;

RepeaterDesigner.GetSelectedDataSource Method

This member supports the .NET Framework infrastructure and is not intended to be used directly from your code.

[Visual Basic]

Public Overridable Function GetSelectedDataSource() As Object _
Implements IDataSourceProvider.GetSelectedDataSource

[C#]

public virtual object GetSelectedDataSource();

[C++]

public: virtual Object* GetSelectedDataSource();

[JScript]

public function GetSelectedDataSource() : Object;

RepeaterDesigner.Initialize Method

This member supports the .NET Framework infrastructure and is not intended to be used directly from your code.

[Visual Basic]

Overrides Public Sub Initialize( _
ByVal component As IComponent _
) Implements IDesigner.Initialize

[C#]

public override void Initialize(
IComponent component
);

[C++]

public: void Initialize(
IComponent* component
);

[JScript]

public override function Initialize(
component : IComponent
);

RepeaterDesigner.OnComponentChanged Method

This member supports the .NET Framework infrastructure and is not intended to be used directly from your code.

[Visual Basic]

Overrides Public Sub OnComponentChanged( _
ByVal source As Object, _
ByVal ce As ComponentChangedEventArgs _
)

[C#]

public override void OnComponentChanged(
object source,
ComponentChangedEventArgs ce
);

[C++]

public: void OnComponentChanged(
Object* source,
ComponentChangedEventArgs* ce
);

[JScript]

public override function OnComponentChanged(
source : Object,
ce : ComponentChangedEventArgs
);

RepeaterDesigner.OnDataSourceChanged Method

This member supports the .NET Framework infrastructure and is not intended to be used directly from your code.

[Visual Basic]

Public Overridable Sub OnDataSourceChanged()

[C#]

public virtual void OnDataSourceChanged();

[C++]

public: virtual void OnDataSourceChanged();

[JScript]

public function OnDataSourceChanged();

RepeaterDesigner.PreFilterProperties Method

This member supports the .NET Framework infrastructure and is not intended to be used directly from your code.

[Visual Basic]

Overrides Protected Sub PreFilterProperties( _
ByVal properties As IDictionary _
)

[C#]

protected override void PreFilterProperties(
IDictionary properties
);

[C++]

protected: void PreFilterProperties(
IDictionary* properties
);

[JScript]

protected override function PreFilterProperties(
properties : IDictionary
);

TableCellsCollectionEditor Class

Provides a user interface for editing the collection of cells in a table row.

System.Object
   System.Drawing.Design.UITypeEditor
      System.ComponentModel.Design.CollectionEditor
         System.Web.UI.Design.WebControls.TableCellsCollection-
         Editor

[Visual Basic]

Public Class TableCellsCollectionEditor
Inherits CollectionEditor

[C#]

public class TableCellsCollectionEditor : CollectionEditor

[C++]

public __gc class TableCellsCollectionEditor : public
CollectionEditor

[JScript]

public class TableCellsCollectionEditor extends CollectionEditor

Thread Safety

Any public static (Shared in Visual Basic) members of this type are safe for multithreaded operations. Any instance members are not guaranteed to be thread safe.

Requirements

Namespace: System.Web.UI.Design.WebControls

Platforms: Windows 2000, Windows XP Professional, Windows Server 2003 family

Assembly: System.Design (in System.Design.dll)

TableCellsCollectionEditor Constructor

Initializes a new instance of the TableCellsCollectionEditor class.

[Visual Basic]

Public Sub New( _
ByVal type As Type _
)

[C#]

public TableCellsCollectionEditor(
Type type
);

[C++]

public: TableCellsCollectionEditor(
Type* type
);

[JScript]

public function TableCellsCollectionEditor(
type : Type
);

Parameters

type

   The type of the collection to edit.

Requirements

Platforms: Windows 2000, Windows XP Professional, Windows Server 2003 family

.NET Framework Security: 

  • Full trust for the immediate caller. This member cannot be used by partially trusted code.

TableCellsCollectionEditor.CanSelectMultipleInstances Method

This member overrides CollectionEditor.CanSelectMultipleInstances.

[Visual Basic]

Overrides Protected Function CanSelectMultipleInstances() As Boolean

[C#]

protected override bool CanSelectMultipleInstances();

[C++]

protected: bool CanSelectMultipleInstances();

[JScript]

protected override function CanSelectMultipleInstances() : Boolean;

Requirements

Platforms: Windows 2000, Windows XP Professional, Windows Server 2003 family

.NET Framework Security: 

  • Full trust for the immediate caller. This member cannot be used by partially trusted code.

TableCellsCollectionEditor.CreateInstance Method

Creates an instance of the editor for use with the specified type.

[Visual Basic]

Overrides Protected Function CreateInstance( _
ByVal itemType As Type _
) As Object

[C#]

protected override object CreateInstance(
Type itemType
);

[C++]

protected: Object* CreateInstance(
Type* itemType
);

[JScript]

protected override function CreateInstance(
itemType : Type
) : Object;

Parameters

itemType

   The type to create an instance of.

Return Value

An object of the specified type.

Requirements

Platforms: Windows 2000, Windows XP Professional, Windows Server 2003 family

.NET Framework Security: 

  • Full trust for the immediate caller. This member cannot be used by partially trusted code.

TableDesigner Class

Extends design-time behavior for the Table Web server control.

System.Object
   System.ComponentModel.Design.ComponentDesigner
      System.Web.UI.Design.HtmlControlDesigner
         System.Web.UI.Design.ControlDesigner
            System.Web.UI.Design.WebControls.TableDesigner

[Visual Basic]

Public Class TableDesigner
Inherits ControlDesigner

[C#]

public class TableDesigner : ControlDesigner

[C++]

public __gc class TableDesigner : public ControlDesigner

[JScript]

public class TableDesigner extends ControlDesigner

Thread Safety

Any public static (Shared in Visual Basic) members of this type are safe for multithreaded operations. Any instance members are not guaranteed to be thread safe.

Requirements

Namespace: System.Web.UI.Design.WebControls

Platforms: Windows 2000, Windows XP Professional, Windows Server 2003 family

Assembly: System.Design (in System.Design.dll)

TableDesigner Constructor

Initializes a new instance of the TableDesigner class.

[Visual Basic]

Public Sub New()

[C#]

public TableDesigner();

[C++]

public: TableDesigner();

[JScript]

public function TableDesigner();

Remarks

The default constructor initializes any fields to their default values.

Requirements

Platforms: Windows 2000, Windows XP Professional, Windows Server 2003 family

.NET Framework Security: 

  • Full trust for the immediate caller. This member cannot be used by partially trusted code.

TableDesigner.GetDesignTimeHtml Method

Gets the HTML that is used to represent the control at design time.

[Visual Basic]

Overrides Public Function GetDesignTimeHtml() As String

[C#]

public override string GetDesignTimeHtml();

[C++]

public: String* GetDesignTimeHtml();

[JScript]

public override function GetDesignTimeHtml() : String;

Return Value

The HTML that is used to represent the control at design time.

Remarks

This method ensures that the table has at least one row and cell, and that the cells contain some text for display at design time.

Requirements

Platforms: Windows 2000, Windows XP Professional, Windows Server 2003 family

.NET Framework Security: 

  • Full trust for the immediate caller. This member cannot be used by partially trusted code.

TableDesigner.GetPersistInnerHtml Method

This member overrides ControlDesigner.GetPersistInnerHtml.

[Visual Basic]

Overrides Public Function GetPersistInnerHtml() As String

[C#]

public override string GetPersistInnerHtml();

[C++]

public: String* GetPersistInnerHtml();

[JScript]

public override function GetPersistInnerHtml() : String;

Requirements

Platforms: Windows 2000, Windows XP Professional, Windows Server 2003 family

.NET Framework Security: 

  • Full trust for the immediate caller. This member cannot be used by partially trusted code.

TableRowsCollectionEditor Class

Provides a user interface for editing rows of a table.

System.Object
   System.Drawing.Design.UITypeEditor
      System.ComponentModel.Design.CollectionEditor
         System.Web.UI.Design.WebControls.TableRows-
         CollectionEditor

[Visual Basic]

Public Class TableRowsCollectionEditor
Inherits CollectionEditor

[C#]

public class TableRowsCollectionEditor : CollectionEditor

[C++]

public __gc class TableRowsCollectionEditor : public
CollectionEditor

[JScript]

public class TableRowsCollectionEditor extends CollectionEditor

Thread Safety

Any public static (Shared in Visual Basic) members of this type are safe for multithreaded operations. Any instance members are not guaranteed to be thread safe.

Requirements

Namespace: System.Web.UI.Design.WebControls

Platforms: Windows 2000, Windows XP Professional, Windows Server 2003 family

Assembly: System.Design (in System.Design.dll)

TableRowsCollectionEditor Constructor

Initializes a new instance of the TableRowsCollectionEditor class.

[Visual Basic]

Public Sub New( _
ByVal type As Type _
)

[C#]

public TableRowsCollectionEditor(
Type type
);

[C++]

public: TableRowsCollectionEditor(
Type* type
);

[JScript]

public function TableRowsCollectionEditor(
type : Type
);

Parameters

type

   The type of the collection to edit.

Requirements

Platforms: Windows 2000, Windows XP Professional, Windows Server 2003 family

.NET Framework Security: 

  • Full trust for the immediate caller. This member cannot be used by partially trusted code.

TableRowsCollectionEditor.CanSelectMultipleInstances Method

Indicates whether multiple instances may be selected.

[Visual Basic]

Overrides Protected Function CanSelectMultipleInstances() As Boolean

[C#]

protected override bool CanSelectMultipleInstances();

[C++]

protected: bool CanSelectMultipleInstances();

[JScript]

protected override function CanSelectMultipleInstances() : Boolean;

Return Value

true if multiple items can be selected at once; otherwise, false. This implementation always returns false.

Requirements

Platforms: Windows 2000, Windows XP Professional, Windows Server 2003 family

.NET Framework Security: 

  • Full trust for the immediate caller. This member cannot be used by partially trusted code.

TableRowsCollectionEditor.CreateInstance Method

Creates an instance of the specified type.

[Visual Basic]

Overrides Protected Function CreateInstance( _
ByVal itemType As Type _
) As Object

[C#]

protected override object CreateInstance(
Type itemType
);

[C++]

protected: Object* CreateInstance(
Type* itemType
);

[JScript]

protected override function CreateInstance(
itemType : Type
) : Object;

Parameters

itemType

   The type to create an instance of.

Return Value

An object of the specified type.

Requirements

Platforms: Windows 2000, Windows XP Professional, Windows Server 2003 family

.NET Framework Security: 

  • Full trust for the immediate caller. This member cannot be used by partially trusted code.

XmlDesigner Class

This type supports the .NET Framework infrastructure and is not intended to be used directly from your code.

[Visual Basic]

Public Class XmlDesigner
Inherits ControlDesigner

[C#]

public class XmlDesigner : ControlDesigner

[C++]

public __gc class XmlDesigner : public ControlDesigner

[JScript]

public class XmlDesigner extends ControlDesigner

XmlDesigner Constructor

This member supports the .NET Framework infrastructure and is not intended to be used directly from your code.

[Visual Basic]

Public Sub New()

[C#]

public XmlDesigner();

[C++]

public: XmlDesigner();

[JScript]

public function XmlDesigner();

XmlDesigner.Dispose Method

This member supports the .NET Framework infrastructure and is not intended to be used directly from your code.

Overload List

This member supports the .NET Framework infrastructure and is not intended to be used directly from your code.

   [Visual Basic] Overloads Overrides Protected Sub Dispose(Boolean)

   [C#] protected override void Dispose(bool);

   [C++] protected: void Dispose(bool);

   [JScript] protected override function Dispose(Boolean);

This member supports the .NET Framework infrastructure and is not intended to be used directly from your code.

   [Visual Basic] Overloads Public Overridable Sub Dispose() Implements IDisposable.Dispose

   [C#] public virtual void Dispose();

   [C++] public: virtual void Dispose();

   [JScript] public function Dispose();

XmlDesigner.Dispose Method (Boolean)

This member supports the .NET Framework infrastructure and is not intended to be used directly from your code.

[Visual Basic]

Overrides Overloads Protected Sub Dispose( _
ByVal disposing As Boolean _
)

[C#]

protected override void Dispose(
bool disposing
);

[C++]

protected: void Dispose(
bool disposing
);

[JScript]

protected override function Dispose(
disposing : Boolean
);

XmlDesigner.GetDesignTimeHtml Method

This member supports the .NET Framework infrastructure and is not intended to be used directly from your code.

[Visual Basic]

Overrides Public Function GetDesignTimeHtml() As String

[C#]

public override string GetDesignTimeHtml();

[C++]

public: String* GetDesignTimeHtml();

[JScript]

public override function GetDesignTimeHtml() : String;

XmlDesigner.GetEmptyDesignTimeHtml Method

This member supports the .NET Framework infrastructure and is not intended to be used directly from your code.

[Visual Basic]

Overrides Protected Function GetEmptyDesignTimeHtml() As String

[C#]

protected override string GetEmptyDesignTimeHtml();

[C++]

protected: String* GetEmptyDesignTimeHtml();

[JScript]

protected override function GetEmptyDesignTimeHtml() : String;

XmlDesigner.Initialize Method

This member supports the .NET Framework infrastructure and is not intended to be used directly from your code.

[Visual Basic]

Overrides Public Sub Initialize( _
ByVal component As IComponent _
) Implements IDesigner.Initialize

[C#]

public override void Initialize(
IComponent component
);

[C++]

public: void Initialize(
IComponent* component
);

[JScript]

public override function Initialize(
component : IComponent
);


Previous   |  Table of Contents   |  Next



Last Updated: March 12, 2003
Top of Page