More paramref fixes
svn path=/trunk/gtk-sharp/; revision=16961
This commit is contained in:
parent
4ab065213e
commit
ad589a0a64
3 changed files with 20 additions and 19 deletions
|
@ -36,7 +36,7 @@
|
|||
<summary>Get the parent <see cref="T:Glade.XML" /> widget</summary>
|
||||
<param name="w">a <see cref="T:Gtk.Widget" /></param>
|
||||
<returns>
|
||||
the <see cref="T:Glade.XML" /> object that built <see paramref="w" />, or <see langword="null" /> if <see paramref="w" /> is not built from Glade
|
||||
the <see cref="T:Glade.XML" /> object that built <paramref name="w" />, or <see langword="null" /> if <paramref name="w" /> is not built from Glade
|
||||
</returns>
|
||||
<remarks></remarks>
|
||||
</Docs>
|
||||
|
@ -53,7 +53,7 @@
|
|||
<Docs>
|
||||
<summary>Gets the name of a Glade-built widget</summary>
|
||||
<param name="w">a <see cref="T:Gtk.Widget" /> built from Glade</param>
|
||||
<returns>the name of the <see paramref="w" /></returns>
|
||||
<returns>the name of the <paramref name="w" /></returns>
|
||||
<remarks></remarks>
|
||||
</Docs>
|
||||
</Member>
|
||||
|
@ -128,7 +128,7 @@
|
|||
<remarks>
|
||||
<para>
|
||||
Connects the signals defined in the glade file with static handler methods provided by the given <see cref="T:System.Type" />,
|
||||
<see paramref="handler_class" />.
|
||||
<paramref name="handler_class" />.
|
||||
</para>
|
||||
</remarks>
|
||||
</Docs>
|
||||
|
@ -147,7 +147,7 @@
|
|||
<param name="handler">an <see cref="T:System.Object" /> with handler methods</param>
|
||||
<remarks>
|
||||
<para>
|
||||
Connects the signals definied in the glade file with static handler methods provided by the given object, <see paramref="handler" />.
|
||||
Connects the signals definied in the glade file with static handler methods provided by the given object, <paramref name="handler" />.
|
||||
</para>
|
||||
</remarks>
|
||||
</Docs>
|
||||
|
@ -168,7 +168,7 @@
|
|||
inserting it into the <see cref="T:Glade.XML" /> object's internal structures.
|
||||
</summary>
|
||||
<param name="widget">the widget to set parameters on</param>
|
||||
<param name="info">the <see cref="T:Glade.WidgetInfo" /> structure for <see paramref="widget" /></param>
|
||||
<param name="info">the <see cref="T:Glade.WidgetInfo" /> structure for <paramref name="widget" /></param>
|
||||
<remarks>
|
||||
<para>
|
||||
Sets the common parameters on <see cref="widget" />, and is responsible
|
||||
|
@ -286,8 +286,9 @@
|
|||
</Parameters>
|
||||
<Docs>
|
||||
<summary>
|
||||
This sets the packing property on container <see paramref="parent" /> of widget <see paramref="child" /> with
|
||||
<see paramref="name" /> to <see paramref="value" /></summary>
|
||||
This sets the packing property on container <paramref name="parent" /> of widget <paramref name="child" /> with
|
||||
<paramref name="name" /> to <paramref name="value" />
|
||||
</summary>
|
||||
<param name="parent">the container widget.</param>
|
||||
<param name="child">the contained child</param>
|
||||
<param name="name">the name of the property</param>
|
||||
|
@ -427,7 +428,7 @@
|
|||
<param name="name">the beginning of a widget name</param>
|
||||
<returns>
|
||||
a <see cref="T:GLib.List" /> of widgets whose name starts
|
||||
with <see paramref="name" /></returns>
|
||||
with <paramref name="name" /></returns>
|
||||
<remarks></remarks>
|
||||
</Docs>
|
||||
</Member>
|
||||
|
@ -446,7 +447,7 @@
|
|||
</summary>
|
||||
<param name="name">the name of the widget to retrieve</param>
|
||||
<returns>
|
||||
the widget specified by <see paramref="name" /> or
|
||||
the widget specified by <paramref name="name" /> or
|
||||
<see langword="null" /> if no Widgets of that name exists
|
||||
</returns>
|
||||
<remarks></remarks>
|
||||
|
@ -565,7 +566,7 @@
|
|||
<param name="buffer">
|
||||
a string containing the content of the glade XML file
|
||||
</param>
|
||||
<param name="size">the length of <see paramref="buffer" /></param>
|
||||
<param name="size">the length of <paramref name="buffer" /></param>
|
||||
<param name="root">
|
||||
the widget node to start building from, or <see langword="null" />.
|
||||
</param>
|
||||
|
@ -702,7 +703,7 @@
|
|||
an <see cref="T:System.Reflection.Assembly" />, or
|
||||
<see langword="null" /> to use the current assembly
|
||||
</param>
|
||||
<param name="resource_name">the name of the resource in <see paramref="assembly" /></param>
|
||||
<param name="resource_name">the name of the resource in <paramref name="assembly" /></param>
|
||||
<param name="root">
|
||||
the widget node to start building from, or <see langword="null" />.
|
||||
</param>
|
||||
|
|
|
@ -254,7 +254,7 @@
|
|||
</Parameters>
|
||||
<Docs>
|
||||
<summary>
|
||||
Render the <see paramref="svp" /> over the <see paramref="buf" />.
|
||||
Render the <paramref name="svp" /> over the <paramref name="buf" />.
|
||||
</summary>
|
||||
<param name="buf">the canvas buffer to render over</param>
|
||||
<param name="svp">the vector path to render</param>
|
||||
|
@ -453,8 +453,8 @@
|
|||
specified rectangle needs to be repainted. This function
|
||||
converts the rectangle to a microtile array and feeds it
|
||||
to <see cref="M:Gnome.Canvas.RequestRedrawUta" />. The rectangle
|
||||
includes <see paramref="x1" /> and <see paramref="y1" />,
|
||||
but not <see paramref="x2" /> and <see paramref="y2" />. To be used only by
|
||||
includes <paramref name="x1" /> and <paramref name="y1" />,
|
||||
but not <paramref name="x2" /> and <paramref name="y2" />. To be used only by
|
||||
item implementations.
|
||||
</para>
|
||||
</remarks>
|
||||
|
@ -668,7 +668,7 @@
|
|||
<returns>Allocated pixel value corresponding to the specified color.</returns>
|
||||
<remarks>
|
||||
<para>
|
||||
Allocates a color from <see paramref="rgba" />, the RGBA
|
||||
Allocates a color from <paramref name="rgba" />, the RGBA
|
||||
value passed into this function. The alpha opacity value
|
||||
is discarded, since normal X colors do not support it.
|
||||
</para>
|
||||
|
|
|
@ -153,11 +153,11 @@
|
|||
<Parameter Name="svp" Type="Art.SVP" />
|
||||
</Parameters>
|
||||
<Docs>
|
||||
<summary>Request redraw of <see paramref="svp" /> if in aa mode, or the entire item in in xlib mode.</summary>
|
||||
<summary>Request redraw of <paramref name="svp" /> if in aa mode, or the entire item in in xlib mode.</summary>
|
||||
<param name="svp">The svp that needs to be redrawn</param>
|
||||
<remarks>
|
||||
<para>
|
||||
This item must contain <see paramref="svp" />.
|
||||
This item must contain <paramref name="svp" />.
|
||||
</para>
|
||||
</remarks>
|
||||
</Docs>
|
||||
|
@ -230,7 +230,7 @@
|
|||
<param name="y">Y coordinate to convert (input/output value).</param>
|
||||
<remarks>
|
||||
<para>
|
||||
The parameters <see paramref="x" /> and <see paramref="y" />
|
||||
The parameters <paramref name="x" /> and <paramref name="y" />
|
||||
are used as both in and out parameters.
|
||||
</para>
|
||||
</remarks>
|
||||
|
@ -414,7 +414,7 @@
|
|||
<param name="y">Y coordinate to convert (input/output value).</param>
|
||||
<remarks>
|
||||
<para>
|
||||
The parameters <see paramref="x" /> and <see paramref="y" />
|
||||
The parameters <paramref name="x" /> and <paramref name="y" />
|
||||
are used as both in and out parameters.
|
||||
</para>
|
||||
</remarks>
|
||||
|
|
Loading…
Reference in a new issue