~ubuntu-branches/ubuntu/saucy/monodevelop/saucy

« back to all changes in this revision

Viewing changes to external/monomac/docs/en/MonoMac.PdfKit/PdfSelection.xml

  • Committer: Package Import Robot
  • Author(s): Jo Shields
  • Date: 2012-05-27 18:08:20 UTC
  • mfrom: (1.8.5) (1.5.8 sid)
  • Revision ID: package-import@ubuntu.com-20120527180820-f1ub6lhg0s50wci1
Tags: 3.0.2+dfsg-3
* [fcecfe7] Fix monodevelop-core-addins.pc.in to point to actual 
  installed location of assemblies.
* [26e1a07] DebSrc 3.0 does not support Quilt's -p parameter, so 
  manually adjust the path in the patch file.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
<Type Name="PdfSelection" FullName="MonoMac.PdfKit.PdfSelection">
 
2
  <TypeSignature Language="C#" Value="public class PdfSelection : MonoMac.Foundation.NSObject" />
 
3
  <TypeSignature Language="ILAsm" Value=".class public auto ansi beforefieldinit PdfSelection extends MonoMac.Foundation.NSObject" />
 
4
  <AssemblyInfo>
 
5
    <AssemblyName>MonoMac</AssemblyName>
 
6
    <AssemblyVersion>0.0.0.0</AssemblyVersion>
 
7
  </AssemblyInfo>
 
8
  <Base>
 
9
    <BaseTypeName>MonoMac.Foundation.NSObject</BaseTypeName>
 
10
  </Base>
 
11
  <Interfaces />
 
12
  <Attributes>
 
13
    <Attribute>
 
14
      <AttributeName>MonoMac.Foundation.Register("PDFSelection", true)</AttributeName>
 
15
    </Attribute>
 
16
  </Attributes>
 
17
  <Docs>
 
18
    <summary>To be added.</summary>
 
19
    <remarks>To be added.</remarks>
 
20
  </Docs>
 
21
  <Members>
 
22
    <Member MemberName=".ctor">
 
23
      <MemberSignature Language="C#" Value="public PdfSelection ();" />
 
24
      <MemberSignature Language="ILAsm" Value=".method public hidebysig specialname rtspecialname instance void .ctor() cil managed" />
 
25
      <MemberType>Constructor</MemberType>
 
26
      <AssemblyInfo>
 
27
        <AssemblyVersion>0.0.0.0</AssemblyVersion>
 
28
      </AssemblyInfo>
 
29
      <Attributes>
 
30
        <Attribute>
 
31
          <AttributeName>MonoMac.Foundation.Export("init")</AttributeName>
 
32
        </Attribute>
 
33
      </Attributes>
 
34
      <Parameters />
 
35
      <Docs>
 
36
        <summary>Default constructor, initializes a new instance of this class.</summary>
 
37
        <remarks>
 
38
        </remarks>
 
39
      </Docs>
 
40
    </Member>
 
41
    <Member MemberName=".ctor">
 
42
      <MemberSignature Language="C#" Value="public PdfSelection (MonoMac.Foundation.NSCoder coder);" />
 
43
      <MemberSignature Language="ILAsm" Value=".method public hidebysig specialname rtspecialname instance void .ctor(class MonoMac.Foundation.NSCoder coder) cil managed" />
 
44
      <MemberType>Constructor</MemberType>
 
45
      <AssemblyInfo>
 
46
        <AssemblyVersion>0.0.0.0</AssemblyVersion>
 
47
      </AssemblyInfo>
 
48
      <Attributes>
 
49
        <Attribute>
 
50
          <AttributeName>MonoMac.Foundation.Export("initWithCoder:")</AttributeName>
 
51
        </Attribute>
 
52
      </Attributes>
 
53
      <Parameters>
 
54
        <Parameter Name="coder" Type="MonoMac.Foundation.NSCoder" />
 
55
      </Parameters>
 
56
      <Docs>
 
57
        <param name="coder">The unarchiver object.</param>
 
58
        <summary>A constructor that initializes the object from the data stored in the unarchiver object.</summary>
 
59
        <remarks>This constructor is provided to allow the class to be initialized from an unarchiver (for example, during NIB deserialization).</remarks>
 
60
      </Docs>
 
61
    </Member>
 
62
    <Member MemberName=".ctor">
 
63
      <MemberSignature Language="C#" Value="public PdfSelection (MonoMac.Foundation.NSObjectFlag t);" />
 
64
      <MemberSignature Language="ILAsm" Value=".method public hidebysig specialname rtspecialname instance void .ctor(class MonoMac.Foundation.NSObjectFlag t) cil managed" />
 
65
      <MemberType>Constructor</MemberType>
 
66
      <AssemblyInfo>
 
67
        <AssemblyVersion>0.0.0.0</AssemblyVersion>
 
68
      </AssemblyInfo>
 
69
      <Parameters>
 
70
        <Parameter Name="t" Type="MonoMac.Foundation.NSObjectFlag" />
 
71
      </Parameters>
 
72
      <Docs>
 
73
        <param name="t">Unused sentinel value, pass NSObjectFlag.Empty.</param>
 
74
        <summary>Constructor to call on derived classes to skip initialization and merely allocate the object.</summary>
 
75
        <remarks>
 
76
          <para>This constructor should be called by derived classes when they completely construct the object in managed code and merely want the runtime to allocate and initialize the NSObject.   This is required to implement the two-step initialization process that Objective-C uses, the first step is to perform the object allocation, the second step is to initialize the object.   When you invoke the constructor that takes the NSObjectFlag.Empty you taking advatnage of a direct path that goes all the way up to NSObject to merely allocate the object's memory and bind the Objective-C and C# objects together.    The actual initialization of the object is up to you.</para>
 
77
          <para>This constructor is typically used by the binding generator to allocate the object, but prevent the actual initialization to take place.   Once the allocation has taken place, the constructor has to initialize the object.   With constructors generated by the binding generator this means that it manually invokes one of the "init" methods to initialize the object.</para>
 
78
          <para>It is your responsability to completely initialize the object if you chain up using the NSObjectFlag.Empty path.</para>
 
79
          <para>In general, if your constructors invokes the NSObjectFlag.Empty base implementation, then it should be calling an Objective-C init method.   If this is not the case, you should instead chain to the proper constructor in your class. </para>
 
80
          <para>The argument value is ignored and merely ensures that the only code that is executed is the construction phase is the basic NSObject allocation and runtime type registration.  Typically the chaining would look like this:</para>
 
81
          <example>
 
82
            <code lang="C#">
 
83
//
 
84
// The NSObjectFlag merely allocates the object and registers the
 
85
// C# class with the Objective-C runtime if necessary, but no actual
 
86
// initXxx method is invoked, that is done later in the constructor
 
87
//
 
88
// This is taken from MonoMac's source code:
 
89
//
 
90
[Export ("initWithFrame:")]
 
91
public UIView (System.Drawing.RectangleF frame) : base (NSObjectFlag.Empty)
 
92
{
 
93
// Invoke the init method now.
 
94
        var initWithFrame = new Selector ("initWithFrame:").Handle;
 
95
        if (IsDirectBinding)
 
96
                Handle = MonoMac.ObjCRuntime.Messaging.IntPtr_objc_msgSend_RectangleF (this.Handle, initWithFrame, frame);
 
97
        else
 
98
                Handle = MonoMac.ObjCRuntime.Messaging.IntPtr_objc_msgSendSuper_RectangleF (this.SuperHandle, initWithFrame, frame);
 
99
}
 
100
</code>
 
101
          </example>
 
102
        </remarks>
 
103
      </Docs>
 
104
    </Member>
 
105
    <Member MemberName=".ctor">
 
106
      <MemberSignature Language="C#" Value="public PdfSelection (MonoMac.PdfKit.PdfDocument document);" />
 
107
      <MemberSignature Language="ILAsm" Value=".method public hidebysig specialname rtspecialname instance void .ctor(class MonoMac.PdfKit.PdfDocument document) cil managed" />
 
108
      <MemberType>Constructor</MemberType>
 
109
      <AssemblyInfo>
 
110
        <AssemblyVersion>0.0.0.0</AssemblyVersion>
 
111
      </AssemblyInfo>
 
112
      <Attributes>
 
113
        <Attribute>
 
114
          <AttributeName>MonoMac.Foundation.Export("initWithDocument:")</AttributeName>
 
115
        </Attribute>
 
116
      </Attributes>
 
117
      <Parameters>
 
118
        <Parameter Name="document" Type="MonoMac.PdfKit.PdfDocument" />
 
119
      </Parameters>
 
120
      <Docs>
 
121
        <param name="document">To be added.</param>
 
122
        <summary>To be added.</summary>
 
123
        <remarks>To be added.</remarks>
 
124
      </Docs>
 
125
    </Member>
 
126
    <Member MemberName=".ctor">
 
127
      <MemberSignature Language="C#" Value="public PdfSelection (IntPtr handle);" />
 
128
      <MemberSignature Language="ILAsm" Value=".method public hidebysig specialname rtspecialname instance void .ctor(native int handle) cil managed" />
 
129
      <MemberType>Constructor</MemberType>
 
130
      <AssemblyInfo>
 
131
        <AssemblyVersion>0.0.0.0</AssemblyVersion>
 
132
      </AssemblyInfo>
 
133
      <Parameters>
 
134
        <Parameter Name="handle" Type="System.IntPtr" />
 
135
      </Parameters>
 
136
      <Docs>
 
137
        <param name="handle">Pointer (handle) to the unmanaged object.</param>
 
138
        <summary>A constructor used when creating managed representations of unmanaged objects;  Called by the runtime.</summary>
 
139
        <remarks>
 
140
          <para>This constructor is invoked by the runtime infrastructure (<see cref="M:MonoMac.ObjCRuntime.GetNSObject (System.IntPtr)" />) to create a new managed representation for a pointer to an unmanaged Objective-C object.    You should not invoke this method directly, instead you should call the GetNSObject method as it will prevent two instances of a managed object to point to the same native object.</para>
 
141
        </remarks>
 
142
      </Docs>
 
143
    </Member>
 
144
    <Member MemberName="AddSelection">
 
145
      <MemberSignature Language="C#" Value="public virtual void AddSelection (MonoMac.PdfKit.PdfSelection selection);" />
 
146
      <MemberSignature Language="ILAsm" Value=".method public hidebysig newslot virtual instance void AddSelection(class MonoMac.PdfKit.PdfSelection selection) cil managed" />
 
147
      <MemberType>Method</MemberType>
 
148
      <AssemblyInfo>
 
149
        <AssemblyVersion>0.0.0.0</AssemblyVersion>
 
150
      </AssemblyInfo>
 
151
      <Attributes>
 
152
        <Attribute>
 
153
          <AttributeName>MonoMac.Foundation.Export("addSelection:")</AttributeName>
 
154
        </Attribute>
 
155
      </Attributes>
 
156
      <ReturnValue>
 
157
        <ReturnType>System.Void</ReturnType>
 
158
      </ReturnValue>
 
159
      <Parameters>
 
160
        <Parameter Name="selection" Type="MonoMac.PdfKit.PdfSelection" />
 
161
      </Parameters>
 
162
      <Docs>
 
163
        <param name="selection">To be added.</param>
 
164
        <summary>To be added.</summary>
 
165
        <remarks>To be added.</remarks>
 
166
      </Docs>
 
167
    </Member>
 
168
    <Member MemberName="AddSelections">
 
169
      <MemberSignature Language="C#" Value="public virtual void AddSelections (MonoMac.PdfKit.PdfSelection[] selections);" />
 
170
      <MemberSignature Language="ILAsm" Value=".method public hidebysig newslot virtual instance void AddSelections(class MonoMac.PdfKit.PdfSelection[] selections) cil managed" />
 
171
      <MemberType>Method</MemberType>
 
172
      <AssemblyInfo>
 
173
        <AssemblyVersion>0.0.0.0</AssemblyVersion>
 
174
      </AssemblyInfo>
 
175
      <Attributes>
 
176
        <Attribute>
 
177
          <AttributeName>MonoMac.Foundation.Export("addSelections:")</AttributeName>
 
178
        </Attribute>
 
179
      </Attributes>
 
180
      <ReturnValue>
 
181
        <ReturnType>System.Void</ReturnType>
 
182
      </ReturnValue>
 
183
      <Parameters>
 
184
        <Parameter Name="selections" Type="MonoMac.PdfKit.PdfSelection[]" />
 
185
      </Parameters>
 
186
      <Docs>
 
187
        <param name="selections">To be added.</param>
 
188
        <summary>To be added.</summary>
 
189
        <remarks>To be added.</remarks>
 
190
      </Docs>
 
191
    </Member>
 
192
    <Member MemberName="AttributedString">
 
193
      <MemberSignature Language="C#" Value="public virtual MonoMac.Foundation.NSAttributedString AttributedString { get; }" />
 
194
      <MemberSignature Language="ILAsm" Value=".property instance class MonoMac.Foundation.NSAttributedString AttributedString" />
 
195
      <MemberType>Property</MemberType>
 
196
      <AssemblyInfo>
 
197
        <AssemblyVersion>0.0.0.0</AssemblyVersion>
 
198
      </AssemblyInfo>
 
199
      <Attributes>
 
200
        <Attribute>
 
201
          <AttributeName>get: MonoMac.Foundation.Export("attributedString")</AttributeName>
 
202
        </Attribute>
 
203
      </Attributes>
 
204
      <ReturnValue>
 
205
        <ReturnType>MonoMac.Foundation.NSAttributedString</ReturnType>
 
206
      </ReturnValue>
 
207
      <Docs>
 
208
        <summary>To be added.</summary>
 
209
        <value>To be added.</value>
 
210
        <remarks>To be added.</remarks>
 
211
      </Docs>
 
212
    </Member>
 
213
    <Member MemberName="ClassHandle">
 
214
      <MemberSignature Language="C#" Value="public override IntPtr ClassHandle { get; }" />
 
215
      <MemberSignature Language="ILAsm" Value=".property instance native int ClassHandle" />
 
216
      <MemberType>Property</MemberType>
 
217
      <AssemblyInfo>
 
218
        <AssemblyVersion>0.0.0.0</AssemblyVersion>
 
219
      </AssemblyInfo>
 
220
      <ReturnValue>
 
221
        <ReturnType>System.IntPtr</ReturnType>
 
222
      </ReturnValue>
 
223
      <Docs>
 
224
        <summary>The handle for this class.</summary>
 
225
        <value>The pointer to the Objective-C class.</value>
 
226
        <remarks>Each MonoMac class mirrors an unmanaged Objective-C class.   This value contains the pointer to the Objective-C class, it is similar to calling objc_getClass with the object name.</remarks>
 
227
      </Docs>
 
228
    </Member>
 
229
    <Member MemberName="Color">
 
230
      <MemberSignature Language="C#" Value="public virtual MonoMac.AppKit.NSColor Color { get; set; }" />
 
231
      <MemberSignature Language="ILAsm" Value=".property instance class MonoMac.AppKit.NSColor Color" />
 
232
      <MemberType>Property</MemberType>
 
233
      <AssemblyInfo>
 
234
        <AssemblyVersion>0.0.0.0</AssemblyVersion>
 
235
      </AssemblyInfo>
 
236
      <Attributes>
 
237
        <Attribute>
 
238
          <AttributeName>get: MonoMac.Foundation.Export("color")</AttributeName>
 
239
        </Attribute>
 
240
        <Attribute>
 
241
          <AttributeName>set: MonoMac.Foundation.Export("setColor:")</AttributeName>
 
242
        </Attribute>
 
243
      </Attributes>
 
244
      <ReturnValue>
 
245
        <ReturnType>MonoMac.AppKit.NSColor</ReturnType>
 
246
      </ReturnValue>
 
247
      <Docs>
 
248
        <summary>To be added.</summary>
 
249
        <value>To be added.</value>
 
250
        <remarks>To be added.</remarks>
 
251
      </Docs>
 
252
    </Member>
 
253
    <Member MemberName="Dispose">
 
254
      <MemberSignature Language="C#" Value="protected override void Dispose (bool disposing);" />
 
255
      <MemberSignature Language="ILAsm" Value=".method familyhidebysig virtual instance void Dispose(bool disposing) cil managed" />
 
256
      <MemberType>Method</MemberType>
 
257
      <AssemblyInfo>
 
258
        <AssemblyVersion>0.0.0.0</AssemblyVersion>
 
259
      </AssemblyInfo>
 
260
      <ReturnValue>
 
261
        <ReturnType>System.Void</ReturnType>
 
262
      </ReturnValue>
 
263
      <Parameters>
 
264
        <Parameter Name="disposing" Type="System.Boolean" />
 
265
      </Parameters>
 
266
      <Docs>
 
267
        <param name="disposing">
 
268
          <para>If set to <see langword="true" />, the method is invoked directly and will dispose manage and unmanaged resources;   If set to <see langword="false" /> the method is being called by the garbage collector finalizer and should only release unmanaged resources.</para>
 
269
        </param>
 
270
        <summary>Releases the resourced used by the PdfSelection object.</summary>
 
271
        <remarks>
 
272
          <para>This Dispose method releases the resources used by the PdfSelection class.</para>
 
273
          <para>This method is called by both the Dispose() method and the object finalizer (Finalize).    When invoked by the Dispose method, the parameter disposting <paramref name="disposing" /> is set to <see langword="true" /> and any managed object references that this object holds are also disposed or released;  when invoked by the object finalizer, on the finalizer thread the value is set to <see langword="false" />. </para>
 
274
          <para>Calling the Dispose method when you are finished using the PdfSelection ensures that all external resources used by this managed object are released as soon as possible.  Once you have invoked the Dispose method, the object is no longer useful and you should no longer make any calls to it.</para>
 
275
          <para>  For more information on how to override this method and on the Dispose/IDisposable pattern, read the ``Implementing a Dispose Method'' document at http://msdn.microsoft.com/en-us/library/fs2xkftw.aspx</para>
 
276
        </remarks>
 
277
      </Docs>
 
278
    </Member>
 
279
    <Member MemberName="Draw">
 
280
      <MemberSignature Language="C#" Value="public virtual void Draw (MonoMac.PdfKit.PdfPage page, bool active);" />
 
281
      <MemberSignature Language="ILAsm" Value=".method public hidebysig newslot virtual instance void Draw(class MonoMac.PdfKit.PdfPage page, bool active) cil managed" />
 
282
      <MemberType>Method</MemberType>
 
283
      <AssemblyInfo>
 
284
        <AssemblyVersion>0.0.0.0</AssemblyVersion>
 
285
      </AssemblyInfo>
 
286
      <Attributes>
 
287
        <Attribute>
 
288
          <AttributeName>MonoMac.Foundation.Export("drawForPage:active:")</AttributeName>
 
289
        </Attribute>
 
290
      </Attributes>
 
291
      <ReturnValue>
 
292
        <ReturnType>System.Void</ReturnType>
 
293
      </ReturnValue>
 
294
      <Parameters>
 
295
        <Parameter Name="page" Type="MonoMac.PdfKit.PdfPage" />
 
296
        <Parameter Name="active" Type="System.Boolean" />
 
297
      </Parameters>
 
298
      <Docs>
 
299
        <param name="page">To be added.</param>
 
300
        <param name="active">To be added.</param>
 
301
        <summary>To be added.</summary>
 
302
        <remarks>To be added.</remarks>
 
303
      </Docs>
 
304
    </Member>
 
305
    <Member MemberName="Draw">
 
306
      <MemberSignature Language="C#" Value="public virtual void Draw (MonoMac.PdfKit.PdfPage page, MonoMac.PdfKit.PdfDisplayBox box, bool active);" />
 
307
      <MemberSignature Language="ILAsm" Value=".method public hidebysig newslot virtual instance void Draw(class MonoMac.PdfKit.PdfPage page, valuetype MonoMac.PdfKit.PdfDisplayBox box, bool active) cil managed" />
 
308
      <MemberType>Method</MemberType>
 
309
      <AssemblyInfo>
 
310
        <AssemblyVersion>0.0.0.0</AssemblyVersion>
 
311
      </AssemblyInfo>
 
312
      <Attributes>
 
313
        <Attribute>
 
314
          <AttributeName>MonoMac.Foundation.Export("drawForPage:withBox:active:")</AttributeName>
 
315
        </Attribute>
 
316
      </Attributes>
 
317
      <ReturnValue>
 
318
        <ReturnType>System.Void</ReturnType>
 
319
      </ReturnValue>
 
320
      <Parameters>
 
321
        <Parameter Name="page" Type="MonoMac.PdfKit.PdfPage" />
 
322
        <Parameter Name="box" Type="MonoMac.PdfKit.PdfDisplayBox" />
 
323
        <Parameter Name="active" Type="System.Boolean" />
 
324
      </Parameters>
 
325
      <Docs>
 
326
        <param name="page">To be added.</param>
 
327
        <param name="box">To be added.</param>
 
328
        <param name="active">To be added.</param>
 
329
        <summary>To be added.</summary>
 
330
        <remarks>To be added.</remarks>
 
331
      </Docs>
 
332
    </Member>
 
333
    <Member MemberName="ExtendSelectionAtEnd">
 
334
      <MemberSignature Language="C#" Value="public virtual void ExtendSelectionAtEnd (int succeed);" />
 
335
      <MemberSignature Language="ILAsm" Value=".method public hidebysig newslot virtual instance void ExtendSelectionAtEnd(int32 succeed) cil managed" />
 
336
      <MemberType>Method</MemberType>
 
337
      <AssemblyInfo>
 
338
        <AssemblyVersion>0.0.0.0</AssemblyVersion>
 
339
      </AssemblyInfo>
 
340
      <Attributes>
 
341
        <Attribute>
 
342
          <AttributeName>MonoMac.Foundation.Export("extendSelectionAtEnd:")</AttributeName>
 
343
        </Attribute>
 
344
      </Attributes>
 
345
      <ReturnValue>
 
346
        <ReturnType>System.Void</ReturnType>
 
347
      </ReturnValue>
 
348
      <Parameters>
 
349
        <Parameter Name="succeed" Type="System.Int32" />
 
350
      </Parameters>
 
351
      <Docs>
 
352
        <param name="succeed">To be added.</param>
 
353
        <summary>To be added.</summary>
 
354
        <remarks>To be added.</remarks>
 
355
      </Docs>
 
356
    </Member>
 
357
    <Member MemberName="ExtendSelectionAtStart">
 
358
      <MemberSignature Language="C#" Value="public virtual void ExtendSelectionAtStart (int precede);" />
 
359
      <MemberSignature Language="ILAsm" Value=".method public hidebysig newslot virtual instance void ExtendSelectionAtStart(int32 precede) cil managed" />
 
360
      <MemberType>Method</MemberType>
 
361
      <AssemblyInfo>
 
362
        <AssemblyVersion>0.0.0.0</AssemblyVersion>
 
363
      </AssemblyInfo>
 
364
      <Attributes>
 
365
        <Attribute>
 
366
          <AttributeName>MonoMac.Foundation.Export("extendSelectionAtStart:")</AttributeName>
 
367
        </Attribute>
 
368
      </Attributes>
 
369
      <ReturnValue>
 
370
        <ReturnType>System.Void</ReturnType>
 
371
      </ReturnValue>
 
372
      <Parameters>
 
373
        <Parameter Name="precede" Type="System.Int32" />
 
374
      </Parameters>
 
375
      <Docs>
 
376
        <param name="precede">To be added.</param>
 
377
        <summary>To be added.</summary>
 
378
        <remarks>To be added.</remarks>
 
379
      </Docs>
 
380
    </Member>
 
381
    <Member MemberName="GetBoundsForPage">
 
382
      <MemberSignature Language="C#" Value="public virtual System.Drawing.RectangleF GetBoundsForPage (MonoMac.PdfKit.PdfPage page);" />
 
383
      <MemberSignature Language="ILAsm" Value=".method public hidebysig newslot virtual instance valuetype System.Drawing.RectangleF GetBoundsForPage(class MonoMac.PdfKit.PdfPage page) cil managed" />
 
384
      <MemberType>Method</MemberType>
 
385
      <AssemblyInfo>
 
386
        <AssemblyVersion>0.0.0.0</AssemblyVersion>
 
387
      </AssemblyInfo>
 
388
      <Attributes>
 
389
        <Attribute>
 
390
          <AttributeName>MonoMac.Foundation.Export("boundsForPage:page")</AttributeName>
 
391
        </Attribute>
 
392
      </Attributes>
 
393
      <ReturnValue>
 
394
        <ReturnType>System.Drawing.RectangleF</ReturnType>
 
395
      </ReturnValue>
 
396
      <Parameters>
 
397
        <Parameter Name="page" Type="MonoMac.PdfKit.PdfPage" />
 
398
      </Parameters>
 
399
      <Docs>
 
400
        <param name="page">To be added.</param>
 
401
        <summary>To be added.</summary>
 
402
        <returns>To be added.</returns>
 
403
        <remarks>To be added.</remarks>
 
404
      </Docs>
 
405
    </Member>
 
406
    <Member MemberName="Pages">
 
407
      <MemberSignature Language="C#" Value="public virtual MonoMac.PdfKit.PdfPage[] Pages { get; }" />
 
408
      <MemberSignature Language="ILAsm" Value=".property instance class MonoMac.PdfKit.PdfPage[] Pages" />
 
409
      <MemberType>Property</MemberType>
 
410
      <AssemblyInfo>
 
411
        <AssemblyVersion>0.0.0.0</AssemblyVersion>
 
412
      </AssemblyInfo>
 
413
      <Attributes>
 
414
        <Attribute>
 
415
          <AttributeName>get: MonoMac.Foundation.Export("pages")</AttributeName>
 
416
        </Attribute>
 
417
      </Attributes>
 
418
      <ReturnValue>
 
419
        <ReturnType>MonoMac.PdfKit.PdfPage[]</ReturnType>
 
420
      </ReturnValue>
 
421
      <Docs>
 
422
        <summary>To be added.</summary>
 
423
        <value>To be added.</value>
 
424
        <remarks>To be added.</remarks>
 
425
      </Docs>
 
426
    </Member>
 
427
    <Member MemberName="SelectionsByLine">
 
428
      <MemberSignature Language="C#" Value="public virtual MonoMac.PdfKit.PdfSelection[] SelectionsByLine ();" />
 
429
      <MemberSignature Language="ILAsm" Value=".method public hidebysig newslot virtual instance class MonoMac.PdfKit.PdfSelection[] SelectionsByLine() cil managed" />
 
430
      <MemberType>Method</MemberType>
 
431
      <AssemblyInfo>
 
432
        <AssemblyVersion>0.0.0.0</AssemblyVersion>
 
433
      </AssemblyInfo>
 
434
      <Attributes>
 
435
        <Attribute>
 
436
          <AttributeName>MonoMac.Foundation.Export("selectionsByLine")</AttributeName>
 
437
        </Attribute>
 
438
      </Attributes>
 
439
      <ReturnValue>
 
440
        <ReturnType>MonoMac.PdfKit.PdfSelection[]</ReturnType>
 
441
      </ReturnValue>
 
442
      <Parameters />
 
443
      <Docs>
 
444
        <summary>To be added.</summary>
 
445
        <returns>To be added.</returns>
 
446
        <remarks>To be added.</remarks>
 
447
      </Docs>
 
448
    </Member>
 
449
    <Member MemberName="Text">
 
450
      <MemberSignature Language="C#" Value="public virtual string Text { get; }" />
 
451
      <MemberSignature Language="ILAsm" Value=".property instance string Text" />
 
452
      <MemberType>Property</MemberType>
 
453
      <AssemblyInfo>
 
454
        <AssemblyVersion>0.0.0.0</AssemblyVersion>
 
455
      </AssemblyInfo>
 
456
      <Attributes>
 
457
        <Attribute>
 
458
          <AttributeName>get: MonoMac.Foundation.Export("string")</AttributeName>
 
459
        </Attribute>
 
460
      </Attributes>
 
461
      <ReturnValue>
 
462
        <ReturnType>System.String</ReturnType>
 
463
      </ReturnValue>
 
464
      <Docs>
 
465
        <summary>To be added.</summary>
 
466
        <value>To be added.</value>
 
467
        <remarks>To be added.</remarks>
 
468
      </Docs>
 
469
    </Member>
 
470
  </Members>
 
471
</Type>