2003-02-12 01:58:46 +00:00
<Type Name= "TabArray" FullName= "Pango.TabArray" >
2003-02-15 03:08:25 +00:00
<TypeSignature Language= "C#" Value= "public class TabArray : GLib.Opaque, IWrapper" Maintainer= "auto" />
2003-02-12 01:58:46 +00:00
<AssemblyInfo >
<AssemblyName > pango-sharp</AssemblyName>
2003-12-24 01:35:30 +00:00
<AssemblyPublicKey >
</AssemblyPublicKey>
2003-02-12 01:58:46 +00:00
<AssemblyVersion > 0.0.0.0</AssemblyVersion>
2003-10-28 00:48:23 +00:00
<AssemblyCulture > neutral</AssemblyCulture>
2003-02-12 01:58:46 +00:00
<Attributes />
</AssemblyInfo>
2003-02-23 07:26:30 +00:00
<ThreadSafetyStatement > Gtk# is thread aware, but not thread safe; See the <link location= "node:gtk-sharp/programming/threads" > Gtk# Thread Programming</link> for details.</ThreadSafetyStatement>
2003-02-12 01:58:46 +00:00
<Docs >
2004-07-17 00:03:17 +00:00
<summary > an object containing an array of tab stops.</summary>
<remarks > Each tab stop has an alignment and a position.</remarks>
2003-02-12 01:58:46 +00:00
</Docs>
<Base >
<BaseTypeName > GLib.Opaque</BaseTypeName>
</Base>
<Interfaces >
<Interface >
<InterfaceName > GLib.IWrapper</InterfaceName>
</Interface>
</Interfaces>
<Attributes />
<Members >
<Member MemberName= "Copy" >
<MemberSignature Language= "C#" Value= "public Pango.TabArray Copy ();" />
<MemberType > Method</MemberType>
<ReturnValue >
<ReturnType > Pango.TabArray</ReturnType>
</ReturnValue>
<Parameters />
<Docs >
2004-07-17 00:03:17 +00:00
<summary > Copies the existing <see cref= "T:Pango.TabArray" /> to a new one.</summary>
<returns > an object of type <see cref= "T:Pango.TabArray" /> </returns>
<remarks />
2003-02-12 01:58:46 +00:00
</Docs>
</Member>
<Member MemberName= "Resize" >
<MemberSignature Language= "C#" Value= "public void Resize (int new_size);" />
<MemberType > Method</MemberType>
<ReturnValue >
<ReturnType > System.Void</ReturnType>
</ReturnValue>
<Parameters >
2003-09-17 21:56:59 +00:00
<Parameter Name= "new_size" Type= "System.Int32" />
</Parameters>
2003-02-12 01:58:46 +00:00
<Docs >
2004-07-17 00:03:17 +00:00
<summary > Sets the size of the tab array to the value specified by <paramref name= "new_size" /> .</summary>
<param name= "new_size" > the new size of the array</param>
<remarks > You must subsequently initialize any tabs that were added to the array.</remarks>
2003-02-12 01:58:46 +00:00
</Docs>
</Member>
<Member MemberName= "Free" >
<MemberSignature Language= "C#" Value= "public void Free ();" />
<MemberType > Method</MemberType>
<ReturnValue >
<ReturnType > System.Void</ReturnType>
</ReturnValue>
<Parameters />
<Docs >
2004-07-17 18:05:37 +00:00
<summary > Frees all the resources for this object.</summary>
<remarks />
2003-02-12 01:58:46 +00:00
</Docs>
</Member>
<Member MemberName= "SetTab" >
<MemberSignature Language= "C#" Value= "public void SetTab (int tab_index, Pango.TabAlign alignment, int location);" />
<MemberType > Method</MemberType>
<ReturnValue >
<ReturnType > System.Void</ReturnType>
</ReturnValue>
<Parameters >
2003-09-17 21:56:59 +00:00
<Parameter Name= "tab_index" Type= "System.Int32" />
<Parameter Name= "alignment" Type= "Pango.TabAlign" />
<Parameter Name= "location" Type= "System.Int32" />
</Parameters>
2003-02-12 01:58:46 +00:00
<Docs >
2004-07-17 00:03:17 +00:00
<summary > Sets the specified <paramref name= "alignment" /> and <paramref name= "location" /> of the tab stop specified by <paramref name= "tab_index" /> .</summary>
<param name= "tab_index" > the index of a tab stop</param>
<param name= "alignment" > the tab alignment</param>
<param name= "location" > the tab location in pango units</param>
<remarks > The value of <paramref name= "alignment" /> must always be <see cref= "T:Pango.TabAlign.Left" /> in the current implementation.</remarks>
2003-02-12 01:58:46 +00:00
</Docs>
</Member>
<Member MemberName= ".ctor" >
<MemberSignature Language= "C#" Value= "public TabArray (IntPtr raw);" />
<MemberType > Constructor</MemberType>
<ReturnValue />
<Parameters >
2003-09-17 21:56:59 +00:00
<Parameter Name= "raw" Type= "System.IntPtr" />
</Parameters>
2003-02-12 01:58:46 +00:00
<Docs >
2003-02-23 07:26:30 +00:00
<summary > Internal constructor</summary>
<param name= "raw" > Pointer to the C object.</param>
<returns > An instance of TabArray, wrapping the C object.</returns>
<remarks >
<para > This is an internal constructor, and should not be used by user code.</para>
</remarks>
2003-02-12 01:58:46 +00:00
</Docs>
</Member>
<Member MemberName= ".ctor" >
<MemberSignature Language= "C#" Value= "public TabArray (int initial_size, bool positions_in_pixels);" />
<MemberType > Constructor</MemberType>
<ReturnValue />
<Parameters >
2003-09-17 21:56:59 +00:00
<Parameter Name= "initial_size" Type= "System.Int32" />
<Parameter Name= "positions_in_pixels" Type= "System.Boolean" />
</Parameters>
2003-02-12 01:58:46 +00:00
<Docs >
2004-07-17 00:03:17 +00:00
<summary > an object containing an array of tab stops</summary>
<param name= "initial_size" > Initial number of tab stops to allocate, can be 0</param>
<param name= "positions_in_pixels" > if <see langword= "true" /> the tab positions are in pixel units</param>
<returns > an object of type <see cref= "T:Pango.TabArray" /> </returns>
<remarks > Creates a new <see cref= "T:Pango.TabArray" /> with the number of tab stops specified by <paramref name= "initial_size" /> . If <paramref name= "positions_in_pixels" /> is <see langword= "true" /> , the tab stop positions are specified in pixel units otherwise in pango units. All tab stops are initially at position 0.</remarks>
2003-02-12 01:58:46 +00:00
</Docs>
</Member>
<Member MemberName= "PositionsInPixels" >
<MemberSignature Language= "C#" Value= "public bool PositionsInPixels { get; };" />
<MemberType > Property</MemberType>
<ReturnValue >
<ReturnType > System.Boolean</ReturnType>
</ReturnValue>
<Docs >
2004-07-17 00:03:17 +00:00
<summary > returns <see langword= "true" /> if the tab positions are specified in pixels and <see langword= "false" /> if they are in pango units.</summary>
<returns > an object of type <see cref= "T:System.Boolean" /> </returns>
<remarks />
2003-02-12 01:58:46 +00:00
</Docs>
</Member>
<Member MemberName= "Size" >
<MemberSignature Language= "C#" Value= "public int Size { get; };" />
<MemberType > Property</MemberType>
<ReturnValue >
<ReturnType > System.Int32</ReturnType>
</ReturnValue>
<Docs >
2004-07-17 00:03:17 +00:00
<summary > returns the number of tab stops in the tab array.</summary>
<returns > the number of tab stops in the array.</returns>
<remarks />
2003-02-12 01:58:46 +00:00
</Docs>
</Member>
2003-10-28 00:48:23 +00:00
<Member MemberName= "GetTab" >
<MemberSignature Language= "C#" Value= "public void GetTab (int tab_index, out Pango.TabAlign alignment, out int location);" />
<MemberType > Method</MemberType>
<ReturnValue >
<ReturnType > System.Void</ReturnType>
</ReturnValue>
<Parameters >
<Parameter Name= "tab_index" Type= "System.Int32" />
<Parameter Name= "alignment" Type= "Pango.TabAlign&" RefType= "out" />
<Parameter Name= "location" Type= "System.Int32&" RefType= "out" />
</Parameters>
<Docs >
2004-07-17 00:03:17 +00:00
<summary > Gets the alignment and position of the tab stop specified by <paramref name= "tab_index" /> .</summary>
<param name= "tab_index" > the tab stop index</param>
2003-10-28 00:48:23 +00:00
<param name= "alignment" > a <see cref= "T:Pango.TabAlign&" /> </param>
2004-08-02 13:36:06 +00:00
<param name= "location" > a <see cref= "T:System.Int32&" /> , the position in Pango units.</param>
2004-08-03 04:46:28 +00:00
</Docs>
2003-10-28 00:48:23 +00:00
</Member>
2003-12-24 01:35:30 +00:00
<Member MemberName= "GType" >
<MemberSignature Language= "C#" Value= "public static GLib.GType GType { get; };" />
<MemberType > Property</MemberType>
<ReturnValue >
<ReturnType > GLib.GType</ReturnType>
</ReturnValue>
<Parameters />
<Docs >
2004-06-21 20:14:42 +00:00
<summary > GType Property.</summary>
2003-12-24 01:35:30 +00:00
<returns > a <see cref= "T:GLib.GType" /> </returns>
2004-06-21 20:14:42 +00:00
<remarks > Returns the native <see cref= "T:GLib.GType" /> value for <see cref= "T:Pango.TabArray" /> .</remarks>
2003-12-24 01:35:30 +00:00
</Docs>
</Member>
2004-08-17 20:43:49 +00:00
<Member MemberName= "GetTabs" >
<MemberSignature Language= "C#" Value= "public void GetTabs (out Pango.TabAlign[] alignments, out int [] locations);" />
<MemberType > Method</MemberType>
<ReturnValue >
<ReturnType > System.Void</ReturnType>
</ReturnValue>
<Parameters >
<Parameter Name= "alignments" Type= "Pango.TabAlign[]&" RefType= "out" />
<Parameter Name= "locations" Type= "System.Int32[]&" RefType= "out" />
</Parameters>
<Docs >
<summary > Gets the an array of alignments and positions.</summary>
<param name= "alignments" > an array of <see cref= "T:Pango.TabAlign" /> indicating the alignment of each tab stop.</param>
<param name= "locations" > an array of <see cref= "T:System.Int32[]" /> indicating the location of each tab stop in pango units.</param>
2004-08-18 16:08:02 +00:00
<remarks />
2004-08-17 20:43:49 +00:00
</Docs>
</Member>
2003-02-12 01:58:46 +00:00
</Members>
2004-08-18 16:08:02 +00:00
</Type>