[JEDI.NET-commits] docs Jedi.Collections.xml,1.3,1.4 Jedi.System.xml,1.3,1.4 Jedi.Windows.Forms.Hmi.
Status: Pre-Alpha
Brought to you by:
jedi_mbe
From: Marcel B. <jed...@us...> - 2004-06-25 13:11:42
|
Update of /cvsroot/jedidotnet/docs In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv15224/docs Modified Files: Jedi.Collections.xml Jedi.System.xml Jedi.Windows.Forms.Hmi.Leds.xml Log Message: Automated update Index: Jedi.System.xml =================================================================== RCS file: /cvsroot/jedidotnet/docs/Jedi.System.xml,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** Jedi.System.xml 25 Jun 2004 12:27:40 -0000 1.3 --- Jedi.System.xml 25 Jun 2004 13:11:32 -0000 1.4 *************** *** 1,5 **** <?xml version="1.0" encoding="utf-8"?> <doc> ! <!--most recent auto update: 2004-06-24 20:02 UTC--> <assembly> <name>Jedi.Core</name> --- 1,5 ---- <?xml version="1.0" encoding="utf-8"?> <doc> ! <!--most recent auto update: 2004-06-25 13:01 UTC--> <assembly> <name>Jedi.Core</name> *************** *** 38,43 **** <summary>Provides methods to work with or manipulate arrays or collections of attributes.</summary> </member> ! <member name="M:Jedi.System.AttributeUtils.CombineAttributes(System.Attribute[],System.Attribute[])"> ! <overloads> Combines two attribute lists. </overloads> --- 38,43 ---- <summary>Provides methods to work with or manipulate arrays or collections of attributes.</summary> </member> ! <member name="M:Jedi.System.AttributeUtils.CombineAttributes(System.Attribute[],System.Attribute[])"> ! <overloads> Combines two attribute lists. </overloads> Index: Jedi.Collections.xml =================================================================== RCS file: /cvsroot/jedidotnet/docs/Jedi.Collections.xml,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** Jedi.Collections.xml 25 Jun 2004 12:28:06 -0000 1.3 --- Jedi.Collections.xml 25 Jun 2004 13:11:32 -0000 1.4 *************** *** 1,5 **** <?xml version="1.0" encoding="utf-8"?> <doc> ! <!--most recent auto update: 2004-06-24 17:16 UTC--> <assembly> <name>Jedi.Core</name> --- 1,5 ---- <?xml version="1.0" encoding="utf-8"?> <doc> ! <!--most recent auto update: 2004-06-25 13:01 UTC--> <assembly> <name>Jedi.Core</name> *************** *** 7,75 **** <members> <member name="T:Jedi.Collections.NamespaceDoc"> ! <summary> The <b>Jedi.Collections</b> namespace defines several classes and interfaces that deal with collections. In addition it provides a mechanism that allows IList and IDictionary collections to be manipulated from within the PropertyGrid directly, without using additional design dialogs. </summary> ! </member> <member name="T:Jedi.Collections.IInlineCollection"> ! <summary> Defines methods needed to allow a collection to be edited from within a <see cref="T:System.Windows.Forms.PropertyGrid" />. </summary> </member> ! <member name="M:Jedi.Collections.IInlineCollection.AddItem(System.Object,System.Object)"> ! <summary> Adds an item given a value and an property ID. </summary> ! <param name="value"> The value specified in the PropertyGrid to be added. For IDictionary collections this is usually the key value. </param> ! <param name="addPropertyId"> The ID of the property that requested the item to be added. </param> ! </member> ! <member name="M:Jedi.Collections.IInlineCollection.GetAllowRemove(System.Object)"> ! <summary> Determines if the given item can be removed. </summary> ! <param name="key"> Key of the item to remove. For IList collections this parameter represents the ordinal index in the list. </param> ! <returns> ! <see langword="true" /> if the item can be removed from the collection; otherwise <see langword="false" />. </returns> ! <remarks> ! <para> This method is called directly from the ProperyGrid editor when an item's value is set to it's empty value as specified at the moment the item's semi property is created. </para> ! <para> Implementing classes can implement this method to perform checking whether an item can be removed or not. Some collections may not allow the collections to grow smaller than a certain number or certain items are fixed and should never be removed. </para> ! </remarks> ! </member> ! <member name="M:Jedi.Collections.IInlineCollection.GetCollectionValue"> ! <summary> Retrieves the text to show in the PropertyGrid for the property that represents the collection. </summary> ! <returns> A <see cref="T:System.String" /> representing the text to show as the value of the property that represents the collection. </returns> ! </member> ! <member name="M:Jedi.Collections.IInlineCollection.GetItemProperties"> ! <summary> Retrieves a <see cref="System.ComponentModel.PropertyDescriptorCollection" /> contain a <see cref="System.ComponentModel.PropertyDescriptor" /> for each item in the collection. </summary> ! <returns> A <see cref="System.ComponentModel.PropertyDescriptorCollection" /> containing a <see cref="System.ComponentModel.PropertyDescriptor" />for each item in the collection. </returns> ! <remarks> ! <para> The PropertyDescriptorCollection returned by this method will be used to generate the sub properties of the property representing the collection. Under normal circumstances the collection will contain a --- 7,75 ---- <members> <member name="T:Jedi.Collections.NamespaceDoc"> ! <summary> The <b>Jedi.Collections</b> namespace defines several classes and interfaces that deal with collections. In addition it provides a mechanism that allows IList and IDictionary collections to be manipulated from within the PropertyGrid directly, without using additional design dialogs. </summary> ! </member> <member name="T:Jedi.Collections.IInlineCollection"> ! <summary> Defines methods needed to allow a collection to be edited from within a <see cref="T:System.Windows.Forms.PropertyGrid" />. </summary> </member> ! <member name="M:Jedi.Collections.IInlineCollection.AddItem(System.Object,System.Object)"> ! <summary> Adds an item given a value and an property ID. </summary> ! <param name="value"> The value specified in the PropertyGrid to be added. For IDictionary collections this is usually the key value. </param> ! <param name="addPropertyId"> The ID of the property that requested the item to be added. </param> ! </member> ! <member name="M:Jedi.Collections.IInlineCollection.GetAllowRemove(System.Object)"> ! <summary> Determines if the given item can be removed. </summary> ! <param name="key"> Key of the item to remove. For IList collections this parameter represents the ordinal index in the list. </param> ! <returns> ! <see langword="true" /> if the item can be removed from the collection; otherwise <see langword="false" />. </returns> ! <remarks> ! <para> This method is called directly from the ProperyGrid editor when an item's value is set to it's empty value as specified at the moment the item's semi property is created. </para> ! <para> Implementing classes can implement this method to perform checking whether an item can be removed or not. Some collections may not allow the collections to grow smaller than a certain number or certain items are fixed and should never be removed. </para> ! </remarks> ! </member> ! <member name="M:Jedi.Collections.IInlineCollection.GetCollectionValue"> ! <summary> Retrieves the text to show in the PropertyGrid for the property that represents the collection. </summary> ! <returns> A <see cref="T:System.String" /> representing the text to show as the value of the property that represents the collection. </returns> ! </member> ! <member name="M:Jedi.Collections.IInlineCollection.GetItemProperties"> ! <summary> Retrieves a <see cref="System.ComponentModel.PropertyDescriptorCollection" /> contain a <see cref="System.ComponentModel.PropertyDescriptor" /> for each item in the collection. </summary> ! <returns> A <see cref="System.ComponentModel.PropertyDescriptorCollection" /> containing a <see cref="System.ComponentModel.PropertyDescriptor" />for each item in the collection. </returns> ! <remarks> ! <para> The PropertyDescriptorCollection returned by this method will be used to generate the sub properties of the property representing the collection. Under normal circumstances the collection will contain a *************** *** 77,82 **** collection, for instance fixed items that should not be changed or removed may be omitted from the collection. </para> ! <para> ! <note type="implementnotes"> Implementers should use the <see cref="M:Jedi.Collections.InlineCollectionUtils.CreateItemProperty" /> method to create the PropertyDescriptor for each item in the collection which is to be edited. This method --- 77,82 ---- collection, for instance fixed items that should not be changed or removed may be omitted from the collection. </para> ! <para> ! <note type="implementnotes"> Implementers should use the <see cref="M:Jedi.Collections.InlineCollectionUtils.CreateItemProperty" /> method to create the PropertyDescriptor for each item in the collection which is to be edited. This method *************** *** 84,105 **** the item being removed from the collection) as well as the index or key of the item in the collection. </note> ! </para> ! </remarks> ! </member> ! <member name="M:Jedi.Collections.IInlineCollection.GetNewItemProperties"> ! <summary> A <see cref="System.ComponentModel.PropertyDescriptorCollection" /> containing a <see cref="System.ComponentModel.PropertyDescriptor" /> that will add new items to the collection. </summary> ! <returns> A <see cref="System.ComponentModel.PropertyDescriptorCollection" /> containing a <see cref="System.ComponentModel.PropertyDescriptor" /> that will add new items to the collection. </returns> ! <remarks> ! <para> The PropertyDescriptorCollection returned by this method will be used to generate sub properties of the property representing the collection. Each property descriptor represents a way to add a new item. </para> ! <para> By allowing multiple PropertyDescriptors it is possible to add various item types to a collection. Each PropertyDescriptor contains an ID value. This value is send along in a call to --- 84,105 ---- the item being removed from the collection) as well as the index or key of the item in the collection. </note> ! </para> ! </remarks> ! </member> ! <member name="M:Jedi.Collections.IInlineCollection.GetNewItemProperties"> ! <summary> A <see cref="System.ComponentModel.PropertyDescriptorCollection" /> containing a <see cref="System.ComponentModel.PropertyDescriptor" /> that will add new items to the collection. </summary> ! <returns> A <see cref="System.ComponentModel.PropertyDescriptorCollection" /> containing a <see cref="System.ComponentModel.PropertyDescriptor" /> that will add new items to the collection. </returns> ! <remarks> ! <para> The PropertyDescriptorCollection returned by this method will be used to generate sub properties of the property representing the collection. Each property descriptor represents a way to add a new item. </para> ! <para> By allowing multiple PropertyDescriptors it is possible to add various item types to a collection. Each PropertyDescriptor contains an ID value. This value is send along in a call to *************** *** 107,119 **** add the indicated value, taking the property ID in account to determine what the value actually represents. </para> ! <para> ! <note type="implementnotes"> Implementers should use the <see cref="M:Jedi.Collections.InlineCollectionUtils.CreateNewItemProperty" /> method to create the PropertyDescriptors needed. The method allows to specify the ID that is send to the <see cref="M:Jedi.Collections.IInlineCollection.AddItem(System.Object,System.Object)" /> method. </note> ! </para> ! </remarks> ! </member> <member name="M:Jedi.Collections.IInlineCollection.GetService(System.Type)"> <summary> --- 107,119 ---- add the indicated value, taking the property ID in account to determine what the value actually represents. </para> ! <para> ! <note type="implementnotes"> Implementers should use the <see cref="M:Jedi.Collections.InlineCollectionUtils.CreateNewItemProperty" /> method to create the PropertyDescriptors needed. The method allows to specify the ID that is send to the <see cref="M:Jedi.Collections.IInlineCollection.AddItem(System.Object,System.Object)" /> method. </note> ! </para> ! </remarks> ! </member> <member name="M:Jedi.Collections.IInlineCollection.GetService(System.Type)"> <summary> *************** *** 138,144 **** </param> <param name="addPropertyId"> ! </param> ! <returns> ! </returns> </member> <member name="M:Jedi.Collections.InlineCollectionBase.GetAllowRemove(System.Object)"> --- 138,142 ---- </param> <param name="addPropertyId"> ! </param> </member> <member name="M:Jedi.Collections.InlineCollectionBase.GetAllowRemove(System.Object)"> *************** *** 166,170 **** <member name="M:Jedi.Collections.InlineCollectionBase.GetItemEmptyValue(System.Int32)"> <summary> ! </summary> <param name="index"> </param> --- 164,168 ---- <member name="M:Jedi.Collections.InlineCollectionBase.GetItemEmptyValue(System.Int32)"> <summary> ! </summary> <param name="index"> </param> *************** *** 179,183 **** <returns> </returns> ! </member> <member name="M:Jedi.Collections.InlineCollectionBase.GetItemName(System.Int32)"> <summary> --- 177,181 ---- <returns> </returns> ! </member> <member name="M:Jedi.Collections.InlineCollectionBase.GetItemName(System.Int32)"> <summary> *************** *** 197,201 **** <summary> </summary> ! <param name="index"> </param> <returns> --- 195,199 ---- <summary> </summary> ! <param name="index"> </param> <returns> *************** *** 225,229 **** <summary> </summary> ! </member> <member name="M:Jedi.Collections.InlineCollectionConverter.#ctor"> <summary> --- 223,227 ---- <summary> </summary> ! </member> <member name="M:Jedi.Collections.InlineCollectionConverter.#ctor"> <summary> *************** *** 249,253 **** <!-- this member is inherited and does not require documentation. ! <summary> </summary> <param name="context"> --- 247,251 ---- <!-- this member is inherited and does not require documentation. ! <summary> </summary> <param name="context"> *************** *** 256,260 **** </param> <param name="attributes"> ! </param> <returns> </returns>--> --- 254,258 ---- </param> <param name="attributes"> ! </param> <returns> </returns>--> *************** *** 284,288 **** </summary> <param name="context"> ! </param> <param name="provider"> </param> --- 282,286 ---- </summary> <param name="context"> ! </param> <param name="provider"> </param> *************** *** 315,347 **** <returns> </returns> ! </member> ! <member name="M:Jedi.Collections.InlineCollectionUtils.CreateItemProperty(System.Reflection.PropertyInfo,System.Object,System.String,System.String,System.Object,System.Object,System.Boolean)"> ! <summary> ! </summary> ! <param name="info"> ! </param> ! <param name="component"> ! </param> ! <param name="name"> ! </param> ! <param name="description"> ! </param> ! <param name="index"> ! </param> ! <param name="emptyValue"> ! </param> ! <param name="ignoreDefaultProperty"> ! </param> ! <returns> ! </returns> ! </member> ! <member name="M:Jedi.Collections.InlineCollectionUtils.CreateItemProperty(System.Type,System.Attribute[],System.Object,System.String,System.String,System.Object,System.Object)"> ! <summary> ! </summary> ! <param name="propertyType"> ! </param> ! <param name="attributes"> ! </param> ! <param name="component"> </param> <param name="name"> --- 313,345 ---- <returns> </returns> ! </member> ! <member name="M:Jedi.Collections.InlineCollectionUtils.CreateItemProperty(System.Reflection.PropertyInfo,System.Object,System.String,System.String,System.Object,System.Object,System.Boolean)"> ! <summary> ! </summary> ! <param name="info"> ! </param> ! <param name="component"> ! </param> ! <param name="name"> ! </param> ! <param name="description"> ! </param> ! <param name="index"> ! </param> ! <param name="emptyValue"> ! </param> ! <param name="ignoreDefaultProperty"> ! </param> ! <returns> ! </returns> ! </member> ! <member name="M:Jedi.Collections.InlineCollectionUtils.CreateItemProperty(System.Type,System.Attribute[],System.Object,System.String,System.String,System.Object,System.Object)"> ! <summary> ! </summary> ! <param name="propertyType"> ! </param> ! <param name="attributes"> ! </param> ! <param name="component"> </param> <param name="name"> *************** *** 389,393 **** <param name="componentType"> </param> ! <param name="propertyType"> </param> <param name="attributes"> --- 387,391 ---- <param name="componentType"> </param> ! <param name="propertyType"> </param> <param name="attributes"> *************** *** 417,422 **** <param name="addPropertyId"> </param> - <returns> - </returns> </member> <member name="M:Jedi.Collections.InlineDictionaryBase.GetAllowRemove(System.Object)"> --- 415,418 ---- Index: Jedi.Windows.Forms.Hmi.Leds.xml =================================================================== RCS file: /cvsroot/jedidotnet/docs/Jedi.Windows.Forms.Hmi.Leds.xml,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** Jedi.Windows.Forms.Hmi.Leds.xml 24 Jun 2004 17:18:16 -0000 1.2 --- Jedi.Windows.Forms.Hmi.Leds.xml 25 Jun 2004 13:11:32 -0000 1.3 *************** *** 1,5 **** <?xml version="1.0" encoding="utf-8"?> <doc> ! <!--most recent auto update: 2004-06-24 17:16 UTC--> <assembly> <name>Jedi.Windows.Forms.Hmi</name> --- 1,5 ---- <?xml version="1.0" encoding="utf-8"?> <doc> ! <!--most recent auto update: 2004-06-25 13:01 UTC--> <assembly> <name>Jedi.Windows.Forms.Hmi</name> *************** *** 39,44 **** <summary> </summary> ! <param name="Jedi.Windows.Forms.Hmi.Leds.LedState.#ctor(System.Drawing.Color,System.String)"> ! </param> <param name="color"> </param> --- 39,46 ---- <summary> </summary> ! </member> ! <member name="M:Jedi.Windows.Forms.Hmi.Leds.LedState.#ctor(System.Drawing.Color,System.String)"> ! <summary> ! </summary> <param name="color"> </param> *************** *** 85,93 **** <summary> </summary> - <param name="Jedi.Windows.Forms.Hmi.Leds.LedStateBase.ColorChanged"> - </param> <value> </value> </member> <member name="M:Jedi.Windows.Forms.Hmi.Leds.LedStateBase.GetBitmap"> <summary> --- 87,97 ---- <summary> </summary> <value> </value> </member> + <member name="E:Jedi.Windows.Forms.Hmi.Leds.LedStateBase.ColorChanged"> + <summary> + </summary> + </member> <member name="M:Jedi.Windows.Forms.Hmi.Leds.LedStateBase.GetBitmap"> <summary> *************** *** 123,134 **** <summary> </summary> - <returns> - </returns> </member> <member name="M:Jedi.Windows.Forms.Hmi.Leds.LedStateBase.MarkInvalid"> <summary> </summary> - <returns> - </returns> </member> <member name="P:Jedi.Windows.Forms.Hmi.Leds.LedStateBase.Name"> --- 127,134 ---- *************** *** 143,148 **** <param name="e"> </param> - <returns> - </returns> </member> <member name="M:Jedi.Windows.Forms.Hmi.Leds.LedStateBase.SetColor(System.Drawing.Color)"> --- 143,146 ---- *************** *** 151,156 **** <param name="value"> </param> - <returns> - </returns> </member> <member name="M:Jedi.Windows.Forms.Hmi.Leds.LedStateBase.SetLedStyle(Jedi.Windows.Forms.Hmi.Leds.LedStyleBase)"> --- 149,152 ---- *************** *** 159,164 **** <param name="value"> </param> - <returns> - </returns> </member> <member name="M:Jedi.Windows.Forms.Hmi.Leds.LedStateBase.SetName(System.String)"> --- 155,158 ---- *************** *** 167,172 **** <param name="value"> </param> - <returns> - </returns> </member> <member name="T:Jedi.Windows.Forms.Hmi.Leds.LedStateCollection"> --- 161,164 ---- *************** *** 196,202 **** </param> <param name="addPropertyId"> ! </param> ! <returns> ! </returns>--> </member> <member name="M:Jedi.Windows.Forms.Hmi.Leds.LedStateCollection.Contains(Jedi.Windows.Forms.Hmi.Leds.LedStateBase)"> --- 188,192 ---- </param> <param name="addPropertyId"> ! </param>--> </member> <member name="M:Jedi.Windows.Forms.Hmi.Leds.LedStateCollection.Contains(Jedi.Windows.Forms.Hmi.Leds.LedStateBase)"> *************** *** 269,274 **** <param name="value"> </param> - <returns> - </returns> </member> <member name="P:Jedi.Windows.Forms.Hmi.Leds.LedStateCollection.Item(System.Int32)"> --- 259,262 ---- *************** *** 284,292 **** this member is inherited and does not require documentation. <summary> ! </summary> ! <param name="Jedi.Windows.Forms.Hmi.Leds.LedStateCollection.OnClearComplete"> ! </param> ! <returns> ! </returns>--> </member> <member name="M:Jedi.Windows.Forms.Hmi.Leds.LedStateCollection.OnInsert(System.Int32,System.Object)"> --- 272,282 ---- this member is inherited and does not require documentation. <summary> ! </summary>--> ! </member> ! <member name="M:Jedi.Windows.Forms.Hmi.Leds.LedStateCollection.OnClearComplete"> ! <!-- ! this member is inherited and does not require documentation. ! <summary> ! </summary>--> </member> <member name="M:Jedi.Windows.Forms.Hmi.Leds.LedStateCollection.OnInsert(System.Int32,System.Object)"> *************** *** 298,304 **** </param> <param name="value"> ! </param> ! <returns> ! </returns>--> </member> <member name="M:Jedi.Windows.Forms.Hmi.Leds.LedStateCollection.OnInsertComplete(System.Int32,System.Object)"> --- 288,292 ---- </param> <param name="value"> ! </param>--> </member> <member name="M:Jedi.Windows.Forms.Hmi.Leds.LedStateCollection.OnInsertComplete(System.Int32,System.Object)"> *************** *** 310,316 **** </param> <param name="value"> ! </param> ! <returns> ! </returns>--> </member> <member name="M:Jedi.Windows.Forms.Hmi.Leds.LedStateCollection.OnRemoveComplete(System.Int32,System.Object)"> --- 298,302 ---- </param> <param name="value"> ! </param>--> </member> <member name="M:Jedi.Windows.Forms.Hmi.Leds.LedStateCollection.OnRemoveComplete(System.Int32,System.Object)"> *************** *** 322,328 **** </param> <param name="value"> ! </param> ! <returns> ! </returns>--> </member> <member name="M:Jedi.Windows.Forms.Hmi.Leds.LedStateCollection.OnSet(System.Int32,System.Object,System.Object)"> --- 308,312 ---- </param> <param name="value"> ! </param>--> </member> <member name="M:Jedi.Windows.Forms.Hmi.Leds.LedStateCollection.OnSet(System.Int32,System.Object,System.Object)"> *************** *** 336,342 **** </param> <param name="newValue"> ! </param> ! <returns> ! </returns>--> </member> <member name="M:Jedi.Windows.Forms.Hmi.Leds.LedStateCollection.OnSetComplete(System.Int32,System.Object,System.Object)"> --- 320,324 ---- </param> <param name="newValue"> ! </param>--> </member> <member name="M:Jedi.Windows.Forms.Hmi.Leds.LedStateCollection.OnSetComplete(System.Int32,System.Object,System.Object)"> *************** *** 350,356 **** </param> <param name="newValue"> ! </param> ! <returns> ! </returns>--> </member> <member name="M:Jedi.Windows.Forms.Hmi.Leds.LedStateCollection.OnValidate(System.Object)"> --- 332,336 ---- </param> <param name="newValue"> ! </param>--> </member> <member name="M:Jedi.Windows.Forms.Hmi.Leds.LedStateCollection.OnValidate(System.Object)"> *************** *** 360,366 **** </summary> <param name="value"> ! </param> ! <returns> ! </returns>--> </member> <member name="M:Jedi.Windows.Forms.Hmi.Leds.LedStateCollection.Remove(Jedi.Windows.Forms.Hmi.Leds.LedStateBase)"> --- 340,344 ---- </summary> <param name="value"> ! </param>--> </member> <member name="M:Jedi.Windows.Forms.Hmi.Leds.LedStateCollection.Remove(Jedi.Windows.Forms.Hmi.Leds.LedStateBase)"> *************** *** 369,374 **** <param name="value"> </param> - <returns> - </returns> </member> <member name="T:Jedi.Windows.Forms.Hmi.Leds.LedStateConverter"> --- 347,350 ---- *************** *** 515,526 **** <summary> </summary> - <returns> - </returns> </member> <member name="M:Jedi.Windows.Forms.Hmi.Leds.LedStyleBase.CreateDefaultStates"> <summary> </summary> - <returns> - </returns> </member> <member name="M:Jedi.Windows.Forms.Hmi.Leds.LedStyleBase.DrawFrame(System.Drawing.Bitmap,System.Drawing.Region)"> --- 491,498 ---- *************** *** 531,542 **** <param name="clipRegion"> </param> - <returns> - </returns> </member> <member name="M:Jedi.Windows.Forms.Hmi.Leds.LedStyleBase.EndInit"> <summary> </summary> - <returns> - </returns> </member> <member name="P:Jedi.Windows.Forms.Hmi.Leds.LedStyleBase.FrameBitmap"> --- 503,510 ---- *************** *** 561,566 **** <summary> </summary> - <returns> - </returns> </member> <member name="M:Jedi.Windows.Forms.Hmi.Leds.LedStyleBase.GetInstanceDescriptor"> --- 529,532 ---- *************** *** 591,612 **** <summary> </summary> ! <param name="Jedi.Windows.Forms.Hmi.Leds.LedStyleBase.InvalidateFrame"> ! </param> ! <param name="Jedi.Windows.Forms.Hmi.Leds.LedStyleBase.InvalidateSettings"> ! </param> ! <param name="Jedi.Windows.Forms.Hmi.Leds.LedStyleBase.InvalidateSize"> ! </param> ! <param name="Jedi.Windows.Forms.Hmi.Leds.LedStyleBase.InvalidateState(Jedi.Windows.Forms.Hmi.Leds.LedStateBase)"> ! </param> <param name="state"> </param> ! <param name="Jedi.Windows.Forms.Hmi.Leds.LedStyleBase.InvalidateState(System.Int32)"> ! </param> <param name="index"> </param> ! <param name="Jedi.Windows.Forms.Hmi.Leds.LedStyleBase.InvalidateStates"> ! </param> ! <returns> ! </returns> </member> <member name="M:Jedi.Windows.Forms.Hmi.Leds.LedStyleBase.IsInitializing"> --- 557,588 ---- <summary> </summary> ! </member> ! <member name="M:Jedi.Windows.Forms.Hmi.Leds.LedStyleBase.InvalidateFrame"> ! <summary> ! </summary> ! </member> ! <member name="M:Jedi.Windows.Forms.Hmi.Leds.LedStyleBase.InvalidateSettings"> ! <summary> ! </summary> ! </member> ! <member name="M:Jedi.Windows.Forms.Hmi.Leds.LedStyleBase.InvalidateSize"> ! <summary> ! </summary> ! </member> ! <member name="M:Jedi.Windows.Forms.Hmi.Leds.LedStyleBase.InvalidateState(Jedi.Windows.Forms.Hmi.Leds.LedStateBase)"> ! <summary> ! </summary> <param name="state"> </param> ! </member> ! <member name="M:Jedi.Windows.Forms.Hmi.Leds.LedStyleBase.InvalidateState(System.Int32)"> ! <summary> ! </summary> <param name="index"> </param> ! </member> ! <member name="M:Jedi.Windows.Forms.Hmi.Leds.LedStyleBase.InvalidateStates"> ! <summary> ! </summary> </member> <member name="M:Jedi.Windows.Forms.Hmi.Leds.LedStyleBase.IsInitializing"> *************** *** 625,630 **** <summary> </summary> - <returns> - </returns> </member> <member name="M:Jedi.Windows.Forms.Hmi.Leds.LedStyleBase.OnSettingsChanged(System.EventArgs)"> --- 601,604 ---- *************** *** 633,638 **** <param name="e"> </param> - <returns> - </returns> </member> <member name="M:Jedi.Windows.Forms.Hmi.Leds.LedStyleBase.OnSizeChanged(System.EventArgs)"> --- 607,610 ---- *************** *** 641,646 **** <param name="e"> </param> - <returns> - </returns> </member> <member name="M:Jedi.Windows.Forms.Hmi.Leds.LedStyleBase.OnStateAdded(System.Int32)"> --- 613,616 ---- *************** *** 649,654 **** <param name="index"> </param> - <returns> - </returns> </member> <member name="M:Jedi.Windows.Forms.Hmi.Leds.LedStyleBase.OnStateRemoved(System.Int32)"> --- 619,622 ---- *************** *** 657,662 **** <param name="index"> </param> - <returns> - </returns> </member> <member name="M:Jedi.Windows.Forms.Hmi.Leds.LedStyleBase.RenderState(Jedi.Windows.Forms.Hmi.Leds.LedStateBase)"> --- 625,628 ---- *************** *** 831,836 **** <summary> </summary> ! <param name="Jedi.Windows.Forms.Hmi.Leds.MultiColorNormalLedStyle.#ctor(System.Int32,System.Int32,Jedi.Windows.Forms.Hmi.Leds.LedFrameStyle,Jedi.Windows.Forms.Hmi.Leds.LedStateBase[])"> ! </param> <param name="Diameter"> </param> --- 797,804 ---- <summary> </summary> ! </member> ! <member name="M:Jedi.Windows.Forms.Hmi.Leds.MultiColorNormalLedStyle.#ctor(System.Int32,System.Int32,Jedi.Windows.Forms.Hmi.Leds.LedFrameStyle,Jedi.Windows.Forms.Hmi.Leds.LedStateBase[])"> ! <summary> ! </summary> <param name="Diameter"> </param> *************** *** 846,852 **** this member is inherited and does not require documentation. <summary> ! </summary> ! <returns> ! </returns>--> </member> <member name="M:Jedi.Windows.Forms.Hmi.Leds.MultiColorNormalLedStyle.GetInstDescArguments"> --- 814,818 ---- this member is inherited and does not require documentation. <summary> ! </summary>--> </member> <member name="M:Jedi.Windows.Forms.Hmi.Leds.MultiColorNormalLedStyle.GetInstDescArguments"> *************** *** 894,900 **** </param> <param name="clipRegion"> ! </param> ! <returns> ! </returns>--> </member> <member name="P:Jedi.Windows.Forms.Hmi.Leds.NormalLedStyleBase.FrameStyle"> --- 860,864 ---- </param> <param name="clipRegion"> ! </param>--> </member> <member name="P:Jedi.Windows.Forms.Hmi.Leds.NormalLedStyleBase.FrameStyle"> *************** *** 930,936 **** this member is inherited and does not require documentation. <summary> ! </summary> ! <returns> ! </returns>--> </member> <member name="M:Jedi.Windows.Forms.Hmi.Leds.NormalLedStyleBase.RenderState(Jedi.Windows.Forms.Hmi.Leds.LedStateBase)"> --- 894,898 ---- this member is inherited and does not require documentation. <summary> ! </summary>--> </member> <member name="M:Jedi.Windows.Forms.Hmi.Leds.NormalLedStyleBase.RenderState(Jedi.Windows.Forms.Hmi.Leds.LedStateBase)"> *************** *** 951,956 **** <summary> </summary> ! <param name="Jedi.Windows.Forms.Hmi.Leds.SingleColorNormalLedStyle.#ctor(System.Int32,System.Int32,Jedi.Windows.Forms.Hmi.Leds.LedFrameStyle,System.Int32,System.Drawing.Color)"> ! </param> <param name="Diameter"> </param> --- 913,920 ---- <summary> </summary> ! </member> ! <member name="M:Jedi.Windows.Forms.Hmi.Leds.SingleColorNormalLedStyle.#ctor(System.Int32,System.Int32,Jedi.Windows.Forms.Hmi.Leds.LedFrameStyle,System.Int32,System.Drawing.Color)"> ! <summary> ! </summary> <param name="Diameter"> </param> *************** *** 968,974 **** this member is inherited and does not require documentation. <summary> ! </summary> ! <returns> ! </returns>--> </member> <member name="M:Jedi.Windows.Forms.Hmi.Leds.SingleColorNormalLedStyle.GetInstDescArguments"> --- 932,936 ---- this member is inherited and does not require documentation. <summary> ! </summary>--> </member> <member name="M:Jedi.Windows.Forms.Hmi.Leds.SingleColorNormalLedStyle.GetInstDescArguments"> *************** *** 1017,1022 **** <param name="value"> </param> - <returns> - </returns> </member> <member name="M:Jedi.Windows.Forms.Hmi.Leds.SingleColorNormalLedStyle.SetOffPercentage(System.Int32)"> --- 979,982 ---- *************** *** 1025,1030 **** <param name="value"> </param> - <returns> - </returns> </member> <member name="T:Jedi.Windows.Forms.Hmi.Leds.SingleLed"> --- 985,988 ---- *************** *** 1047,1052 **** <summary> </summary> - <returns> - </returns> </member> <member name="P:Jedi.Windows.Forms.Hmi.Leds.SingleLed.BlinkInterval"> --- 1005,1008 ---- *************** *** 1063,1068 **** <param name="e"> </param> - <returns> - </returns> </member> <member name="P:Jedi.Windows.Forms.Hmi.Leds.SingleLed.CausesValidation"> --- 1019,1022 ---- *************** *** 1078,1084 **** </summary> <param name="Disposing"> ! </param> ! <returns> ! </returns>--> </member> <member name="P:Jedi.Windows.Forms.Hmi.Leds.SingleLed.Enabled"> --- 1032,1036 ---- </summary> <param name="Disposing"> ! </param>--> </member> <member name="P:Jedi.Windows.Forms.Hmi.Leds.SingleLed.Enabled"> *************** *** 1091,1096 **** <summary> </summary> - <returns> - </returns> </member> <member name="P:Jedi.Windows.Forms.Hmi.Leds.SingleLed.Font"> --- 1043,1046 ---- *************** *** 1152,1158 **** </summary> <param name="e"> ! </param> ! <returns> ! </returns>--> </member> <member name="M:Jedi.Windows.Forms.Hmi.Leds.SingleLed.OnPaint(System.Windows.Forms.PaintEventArgs)"> --- 1102,1106 ---- </summary> <param name="e"> ! </param>--> </member> <member name="M:Jedi.Windows.Forms.Hmi.Leds.SingleLed.OnPaint(System.Windows.Forms.PaintEventArgs)"> *************** *** 1162,1168 **** </summary> <param name="e"> ! </param> ! <returns> ! </returns>--> </member> <member name="P:Jedi.Windows.Forms.Hmi.Leds.SingleLed.RightToLeft"> --- 1110,1114 ---- </summary> <param name="e"> ! </param>--> </member> <member name="P:Jedi.Windows.Forms.Hmi.Leds.SingleLed.RightToLeft"> *************** *** 1181,1186 **** <param name="e"> </param> - <returns> - </returns> </member> <member name="M:Jedi.Windows.Forms.Hmi.Leds.SingleLed.Style_SizeChanged(System.Object,System.EventArgs)"> --- 1127,1130 ---- *************** *** 1191,1196 **** <param name="e"> </param> - <returns> - </returns> </member> <member name="M:Jedi.Windows.Forms.Hmi.Leds.SingleLed.Style_StateAdded(System.Object,Jedi.Windows.Forms.Hmi.Leds.StateChangedEventArgs)"> --- 1135,1138 ---- *************** *** 1201,1206 **** <param name="e"> </param> - <returns> - </returns> </member> <member name="M:Jedi.Windows.Forms.Hmi.Leds.SingleLed.Style_StateRemoved(System.Object,Jedi.Windows.Forms.Hmi.Leds.StateChangedEventArgs)"> --- 1143,1146 ---- *************** *** 1211,1216 **** <param name="e"> </param> - <returns> - </returns> </member> <member name="P:Jedi.Windows.Forms.Hmi.Leds.SingleLed.Text"> --- 1151,1154 ---- *************** *** 1269,1274 **** <param name="result"> </param> - <returns> - </returns> </member> <member name="M:Jedi.Windows.Forms.Hmi.Leds.StateChangedEventHandler.Invoke(System.Object,Jedi.Windows.Forms.Hmi.Leds.StateChangedEventArgs)"> --- 1207,1210 ---- *************** *** 1279,1284 **** <param name="e"> </param> - <returns> - </returns> </member> </members> --- 1215,1218 ---- |