~ubuntu-branches/ubuntu/trusty/monodevelop/trusty-proposed

« back to all changes in this revision

Viewing changes to external/monomac/docs/en/MonoMac.AppKit/NSBitmapImageRep.xml

  • Committer: Package Import Robot
  • Author(s): Jo Shields
  • Date: 2013-05-12 09:46:03 UTC
  • mto: This revision was merged to the branch mainline in revision 29.
  • Revision ID: package-import@ubuntu.com-20130512094603-mad323bzcxvmcam0
Tags: upstream-4.0.5+dfsg
ImportĀ upstreamĀ versionĀ 4.0.5+dfsg

Show diffs side-by-side

added added

removed removed

Lines of Context:
30
30
        <Attribute>
31
31
          <AttributeName>MonoMac.Foundation.Export("init")</AttributeName>
32
32
        </Attribute>
 
33
        <Attribute>
 
34
          <AttributeName>System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Advanced)</AttributeName>
 
35
        </Attribute>
33
36
      </Attributes>
34
37
      <Parameters />
35
38
      <Docs>
91
94
        <Attribute>
92
95
          <AttributeName>MonoMac.Foundation.Export("initWithCoder:")</AttributeName>
93
96
        </Attribute>
 
97
        <Attribute>
 
98
          <AttributeName>System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Advanced)</AttributeName>
 
99
        </Attribute>
94
100
      </Attributes>
95
101
      <Parameters>
96
102
        <Parameter Name="coder" Type="MonoMac.Foundation.NSCoder" />
129
135
      <AssemblyInfo>
130
136
        <AssemblyVersion>0.0.0.0</AssemblyVersion>
131
137
      </AssemblyInfo>
 
138
      <Attributes>
 
139
        <Attribute>
 
140
          <AttributeName>System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Advanced)</AttributeName>
 
141
        </Attribute>
 
142
      </Attributes>
132
143
      <Parameters>
133
144
        <Parameter Name="t" Type="MonoMac.Foundation.NSObjectFlag" />
134
145
      </Parameters>
135
146
      <Docs>
136
147
        <param name="t">Unused sentinel value, pass NSObjectFlag.Empty.</param>
137
 
        <summary>Constructor to call on derived classes to skip initialization and merely allocate the object.</summary>
 
148
        <summary>Constructor to call on derived classes when the derived class has an [Export] constructor.</summary>
138
149
        <remarks>
139
 
          <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>
140
 
          <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>
141
 
          <para>It is your responsability to completely initialize the object if you chain up using the NSObjectFlag.Empty path.</para>
142
 
          <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>
143
 
          <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>
 
150
          <para>This constructor should be called by derived classes when they are initialized using an [Export] attribute. The argument value is ignore, typically the chaining would look like this:</para>
144
151
          <example>
145
152
            <code lang="C#">
146
 
//
147
 
// The NSObjectFlag merely allocates the object and registers the
148
 
// C# class with the Objective-C runtime if necessary, but no actual
149
 
// initXxx method is invoked, that is done later in the constructor
150
 
//
151
 
// This is taken from MonoMac's source code:
152
 
//
153
 
[Export ("initWithFrame:")]
154
 
public UIView (System.Drawing.RectangleF frame) : base (NSObjectFlag.Empty)
155
 
{
156
 
// Invoke the init method now.
157
 
        var initWithFrame = new Selector ("initWithFrame:").Handle;
158
 
        if (IsDirectBinding)
159
 
                Handle = MonoMac.ObjCRuntime.Messaging.IntPtr_objc_msgSend_RectangleF (this.Handle, initWithFrame, frame);
160
 
        else
161
 
                Handle = MonoMac.ObjCRuntime.Messaging.IntPtr_objc_msgSendSuper_RectangleF (this.SuperHandle, initWithFrame, frame);
162
 
}
 
153
public class MyClass : BaseClass {
 
154
    [Export ("initWithFoo:")]
 
155
    public MyClass (string foo) : base (NSObjectFlag.Empty)
 
156
    {
 
157
        ...
 
158
    }
163
159
</code>
164
160
          </example>
165
161
        </remarks>
193
189
      <AssemblyInfo>
194
190
        <AssemblyVersion>0.0.0.0</AssemblyVersion>
195
191
      </AssemblyInfo>
 
192
      <Attributes>
 
193
        <Attribute>
 
194
          <AttributeName>System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Advanced)</AttributeName>
 
195
        </Attribute>
 
196
      </Attributes>
196
197
      <Parameters>
197
198
        <Parameter Name="handle" Type="System.IntPtr" />
198
199
      </Parameters>
223
224
      <Docs>
224
225
        <param name="a">Unused sentinel value, pass NSObjectFlag.Empty.</param>
225
226
        <param name="b">To be added.</param>
226
 
        <summary>Constructor to call on derived classes to skip initialization and merely allocate the object.</summary>
 
227
        <summary>Constructor to call on derived classes when the derived class has an [Export] constructor.</summary>
227
228
        <remarks>
228
 
          <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>
229
 
          <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>
230
 
          <para>It is your responsability to completely initialize the object if you chain up using the NSObjectFlag.Empty path.</para>
231
 
          <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>
232
 
          <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>
 
229
          <para>This constructor should be called by derived classes when they are initialized using an [Export] attribute. The argument value is ignore, typically the chaining would look like this:</para>
233
230
          <example>
234
231
            <code lang="C#">
235
 
//
236
 
// The NSObjectFlag merely allocates the object and registers the
237
 
// C# class with the Objective-C runtime if necessary, but no actual
238
 
// initXxx method is invoked, that is done later in the constructor
239
 
//
240
 
// This is taken from MonoMac's source code:
241
 
//
242
 
[Export ("initWithFrame:")]
243
 
public UIView (System.Drawing.RectangleF frame) : base (NSObjectFlag.Empty)
244
 
{
245
 
// Invoke the init method now.
246
 
        var initWithFrame = new Selector ("initWithFrame:").Handle;
247
 
        if (IsDirectBinding)
248
 
                Handle = MonoMac.ObjCRuntime.Messaging.IntPtr_objc_msgSend_RectangleF (this.Handle, initWithFrame, frame);
249
 
        else
250
 
                Handle = MonoMac.ObjCRuntime.Messaging.IntPtr_objc_msgSendSuper_RectangleF (this.SuperHandle, initWithFrame, frame);
251
 
}
 
232
public class MyClass : BaseClass {
 
233
    [Export ("initWithFoo:")]
 
234
    public MyClass (string foo) : base (NSObjectFlag.Empty)
 
235
    {
 
236
        ...
 
237
    }
252
238
</code>
253
239
          </example>
254
240
        </remarks>
579
565
        <remarks>To be added.</remarks>
580
566
      </Docs>
581
567
    </Member>
 
568
    <Member MemberName="ColorSyncProfileData">
 
569
      <MemberSignature Language="C#" Value="public static MonoMac.Foundation.NSString ColorSyncProfileData { get; }" />
 
570
      <MemberSignature Language="ILAsm" Value=".property class MonoMac.Foundation.NSString ColorSyncProfileData" />
 
571
      <MemberType>Property</MemberType>
 
572
      <AssemblyInfo>
 
573
        <AssemblyVersion>0.0.0.0</AssemblyVersion>
 
574
      </AssemblyInfo>
 
575
      <ReturnValue>
 
576
        <ReturnType>MonoMac.Foundation.NSString</ReturnType>
 
577
      </ReturnValue>
 
578
      <Docs>
 
579
        <summary>To be added.</summary>
 
580
        <value>To be added.</value>
 
581
        <remarks>To be added.</remarks>
 
582
      </Docs>
 
583
    </Member>
 
584
    <Member MemberName="CompressionFactor">
 
585
      <MemberSignature Language="C#" Value="public static MonoMac.Foundation.NSString CompressionFactor { get; }" />
 
586
      <MemberSignature Language="ILAsm" Value=".property class MonoMac.Foundation.NSString CompressionFactor" />
 
587
      <MemberType>Property</MemberType>
 
588
      <AssemblyInfo>
 
589
        <AssemblyVersion>0.0.0.0</AssemblyVersion>
 
590
      </AssemblyInfo>
 
591
      <ReturnValue>
 
592
        <ReturnType>MonoMac.Foundation.NSString</ReturnType>
 
593
      </ReturnValue>
 
594
      <Docs>
 
595
        <summary>To be added.</summary>
 
596
        <value>To be added.</value>
 
597
        <remarks>To be added.</remarks>
 
598
      </Docs>
 
599
    </Member>
 
600
    <Member MemberName="CompressionMethod">
 
601
      <MemberSignature Language="C#" Value="public static MonoMac.Foundation.NSString CompressionMethod { get; }" />
 
602
      <MemberSignature Language="ILAsm" Value=".property class MonoMac.Foundation.NSString CompressionMethod" />
 
603
      <MemberType>Property</MemberType>
 
604
      <AssemblyInfo>
 
605
        <AssemblyVersion>0.0.0.0</AssemblyVersion>
 
606
      </AssemblyInfo>
 
607
      <ReturnValue>
 
608
        <ReturnType>MonoMac.Foundation.NSString</ReturnType>
 
609
      </ReturnValue>
 
610
      <Docs>
 
611
        <summary>To be added.</summary>
 
612
        <value>To be added.</value>
 
613
        <remarks>To be added.</remarks>
 
614
      </Docs>
 
615
    </Member>
582
616
    <Member MemberName="ConvertingToColorSpace">
583
617
      <MemberSignature Language="C#" Value="public virtual MonoMac.AppKit.NSBitmapImageRep ConvertingToColorSpace (MonoMac.AppKit.NSColorSpace targetSpace, MonoMac.AppKit.NSColorRenderingIntent renderingIntent);" />
584
618
      <MemberSignature Language="ILAsm" Value=".method public hidebysig newslot virtual instance class MonoMac.AppKit.NSBitmapImageRep ConvertingToColorSpace(class MonoMac.AppKit.NSColorSpace targetSpace, valuetype MonoMac.AppKit.NSColorRenderingIntent renderingIntent) cil managed" />
606
640
        <remarks>To be added.</remarks>
607
641
      </Docs>
608
642
    </Member>
 
643
    <Member MemberName="CurrentFrame">
 
644
      <MemberSignature Language="C#" Value="public static MonoMac.Foundation.NSString CurrentFrame { get; }" />
 
645
      <MemberSignature Language="ILAsm" Value=".property class MonoMac.Foundation.NSString CurrentFrame" />
 
646
      <MemberType>Property</MemberType>
 
647
      <AssemblyInfo>
 
648
        <AssemblyVersion>0.0.0.0</AssemblyVersion>
 
649
      </AssemblyInfo>
 
650
      <ReturnValue>
 
651
        <ReturnType>MonoMac.Foundation.NSString</ReturnType>
 
652
      </ReturnValue>
 
653
      <Docs>
 
654
        <summary>To be added.</summary>
 
655
        <value>To be added.</value>
 
656
        <remarks>To be added.</remarks>
 
657
      </Docs>
 
658
    </Member>
 
659
    <Member MemberName="CurrentFrameDuration">
 
660
      <MemberSignature Language="C#" Value="public static MonoMac.Foundation.NSString CurrentFrameDuration { get; }" />
 
661
      <MemberSignature Language="ILAsm" Value=".property class MonoMac.Foundation.NSString CurrentFrameDuration" />
 
662
      <MemberType>Property</MemberType>
 
663
      <AssemblyInfo>
 
664
        <AssemblyVersion>0.0.0.0</AssemblyVersion>
 
665
      </AssemblyInfo>
 
666
      <ReturnValue>
 
667
        <ReturnType>MonoMac.Foundation.NSString</ReturnType>
 
668
      </ReturnValue>
 
669
      <Docs>
 
670
        <summary>To be added.</summary>
 
671
        <value>To be added.</value>
 
672
        <remarks>To be added.</remarks>
 
673
      </Docs>
 
674
    </Member>
609
675
    <Member MemberName="Dispose">
610
676
      <MemberSignature Language="C#" Value="protected override void Dispose (bool disposing);" />
611
677
      <MemberSignature Language="ILAsm" Value=".method familyhidebysig virtual instance void Dispose(bool disposing) cil managed" />
623
689
        <param name="disposing">
624
690
          <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>
625
691
        </param>
626
 
        <summary>Releases the resourced used by the NSBitmapImageRep object.</summary>
 
692
        <summary>Releases the resources used by the NSBitmapImageRep object.</summary>
627
693
        <remarks>
628
694
          <para>This Dispose method releases the resources used by the NSBitmapImageRep class.</para>
629
695
          <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>
632
698
        </remarks>
633
699
      </Docs>
634
700
    </Member>
 
701
    <Member MemberName="DitherTransparency">
 
702
      <MemberSignature Language="C#" Value="public static MonoMac.Foundation.NSString DitherTransparency { get; }" />
 
703
      <MemberSignature Language="ILAsm" Value=".property class MonoMac.Foundation.NSString DitherTransparency" />
 
704
      <MemberType>Property</MemberType>
 
705
      <AssemblyInfo>
 
706
        <AssemblyVersion>0.0.0.0</AssemblyVersion>
 
707
      </AssemblyInfo>
 
708
      <ReturnValue>
 
709
        <ReturnType>MonoMac.Foundation.NSString</ReturnType>
 
710
      </ReturnValue>
 
711
      <Docs>
 
712
        <summary>To be added.</summary>
 
713
        <value>To be added.</value>
 
714
        <remarks>To be added.</remarks>
 
715
      </Docs>
 
716
    </Member>
 
717
    <Member MemberName="EXIFData">
 
718
      <MemberSignature Language="C#" Value="public static MonoMac.Foundation.NSString EXIFData { get; }" />
 
719
      <MemberSignature Language="ILAsm" Value=".property class MonoMac.Foundation.NSString EXIFData" />
 
720
      <MemberType>Property</MemberType>
 
721
      <AssemblyInfo>
 
722
        <AssemblyVersion>0.0.0.0</AssemblyVersion>
 
723
      </AssemblyInfo>
 
724
      <ReturnValue>
 
725
        <ReturnType>MonoMac.Foundation.NSString</ReturnType>
 
726
      </ReturnValue>
 
727
      <Docs>
 
728
        <summary>To be added.</summary>
 
729
        <value>To be added.</value>
 
730
        <remarks>To be added.</remarks>
 
731
      </Docs>
 
732
    </Member>
 
733
    <Member MemberName="FallbackBackgroundColor">
 
734
      <MemberSignature Language="C#" Value="public static MonoMac.Foundation.NSString FallbackBackgroundColor { get; }" />
 
735
      <MemberSignature Language="ILAsm" Value=".property class MonoMac.Foundation.NSString FallbackBackgroundColor" />
 
736
      <MemberType>Property</MemberType>
 
737
      <AssemblyInfo>
 
738
        <AssemblyVersion>0.0.0.0</AssemblyVersion>
 
739
      </AssemblyInfo>
 
740
      <ReturnValue>
 
741
        <ReturnType>MonoMac.Foundation.NSString</ReturnType>
 
742
      </ReturnValue>
 
743
      <Docs>
 
744
        <summary>To be added.</summary>
 
745
        <value>To be added.</value>
 
746
        <remarks>To be added.</remarks>
 
747
      </Docs>
 
748
    </Member>
 
749
    <Member MemberName="FrameCount">
 
750
      <MemberSignature Language="C#" Value="public static MonoMac.Foundation.NSString FrameCount { get; }" />
 
751
      <MemberSignature Language="ILAsm" Value=".property class MonoMac.Foundation.NSString FrameCount" />
 
752
      <MemberType>Property</MemberType>
 
753
      <AssemblyInfo>
 
754
        <AssemblyVersion>0.0.0.0</AssemblyVersion>
 
755
      </AssemblyInfo>
 
756
      <ReturnValue>
 
757
        <ReturnType>MonoMac.Foundation.NSString</ReturnType>
 
758
      </ReturnValue>
 
759
      <Docs>
 
760
        <summary>To be added.</summary>
 
761
        <value>To be added.</value>
 
762
        <remarks>To be added.</remarks>
 
763
      </Docs>
 
764
    </Member>
 
765
    <Member MemberName="Gamma">
 
766
      <MemberSignature Language="C#" Value="public static MonoMac.Foundation.NSString Gamma { get; }" />
 
767
      <MemberSignature Language="ILAsm" Value=".property class MonoMac.Foundation.NSString Gamma" />
 
768
      <MemberType>Property</MemberType>
 
769
      <AssemblyInfo>
 
770
        <AssemblyVersion>0.0.0.0</AssemblyVersion>
 
771
      </AssemblyInfo>
 
772
      <ReturnValue>
 
773
        <ReturnType>MonoMac.Foundation.NSString</ReturnType>
 
774
      </ReturnValue>
 
775
      <Docs>
 
776
        <summary>To be added.</summary>
 
777
        <value>To be added.</value>
 
778
        <remarks>To be added.</remarks>
 
779
      </Docs>
 
780
    </Member>
635
781
    <Member MemberName="GetBitmapDataPlanes">
636
782
      <MemberSignature Language="C#" Value="public virtual void GetBitmapDataPlanes (IntPtr data);" />
637
783
      <MemberSignature Language="ILAsm" Value=".method public hidebysig newslot virtual instance void GetBitmapDataPlanes(native int data) cil managed" />
830
976
        <remarks>To be added.</remarks>
831
977
      </Docs>
832
978
    </Member>
 
979
    <Member MemberName="Interlaced">
 
980
      <MemberSignature Language="C#" Value="public static MonoMac.Foundation.NSString Interlaced { get; }" />
 
981
      <MemberSignature Language="ILAsm" Value=".property class MonoMac.Foundation.NSString Interlaced" />
 
982
      <MemberType>Property</MemberType>
 
983
      <AssemblyInfo>
 
984
        <AssemblyVersion>0.0.0.0</AssemblyVersion>
 
985
      </AssemblyInfo>
 
986
      <ReturnValue>
 
987
        <ReturnType>MonoMac.Foundation.NSString</ReturnType>
 
988
      </ReturnValue>
 
989
      <Docs>
 
990
        <summary>To be added.</summary>
 
991
        <value>To be added.</value>
 
992
        <remarks>To be added.</remarks>
 
993
      </Docs>
 
994
    </Member>
833
995
    <Member MemberName="IsPlanar">
834
996
      <MemberSignature Language="C#" Value="public virtual bool IsPlanar { get; }" />
835
997
      <MemberSignature Language="ILAsm" Value=".property instance bool IsPlanar" />
876
1038
        <remarks>To be added.</remarks>
877
1039
      </Docs>
878
1040
    </Member>
 
1041
    <Member MemberName="LoopCount">
 
1042
      <MemberSignature Language="C#" Value="public static MonoMac.Foundation.NSString LoopCount { get; }" />
 
1043
      <MemberSignature Language="ILAsm" Value=".property class MonoMac.Foundation.NSString LoopCount" />
 
1044
      <MemberType>Property</MemberType>
 
1045
      <AssemblyInfo>
 
1046
        <AssemblyVersion>0.0.0.0</AssemblyVersion>
 
1047
      </AssemblyInfo>
 
1048
      <ReturnValue>
 
1049
        <ReturnType>MonoMac.Foundation.NSString</ReturnType>
 
1050
      </ReturnValue>
 
1051
      <Docs>
 
1052
        <summary>To be added.</summary>
 
1053
        <value>To be added.</value>
 
1054
        <remarks>To be added.</remarks>
 
1055
      </Docs>
 
1056
    </Member>
879
1057
    <Member MemberName="Planes">
880
1058
      <MemberSignature Language="C#" Value="public virtual int Planes { get; }" />
881
1059
      <MemberSignature Language="ILAsm" Value=".property instance int32 Planes" />
897
1075
        <remarks>To be added.</remarks>
898
1076
      </Docs>
899
1077
    </Member>
 
1078
    <Member MemberName="Progressive">
 
1079
      <MemberSignature Language="C#" Value="public static MonoMac.Foundation.NSString Progressive { get; }" />
 
1080
      <MemberSignature Language="ILAsm" Value=".property class MonoMac.Foundation.NSString Progressive" />
 
1081
      <MemberType>Property</MemberType>
 
1082
      <AssemblyInfo>
 
1083
        <AssemblyVersion>0.0.0.0</AssemblyVersion>
 
1084
      </AssemblyInfo>
 
1085
      <ReturnValue>
 
1086
        <ReturnType>MonoMac.Foundation.NSString</ReturnType>
 
1087
      </ReturnValue>
 
1088
      <Docs>
 
1089
        <summary>To be added.</summary>
 
1090
        <value>To be added.</value>
 
1091
        <remarks>To be added.</remarks>
 
1092
      </Docs>
 
1093
    </Member>
900
1094
    <Member MemberName="RepresentationUsingTypeProperties">
901
1095
      <MemberSignature Language="C#" Value="public virtual MonoMac.Foundation.NSData RepresentationUsingTypeProperties (MonoMac.AppKit.NSBitmapImageFileType storageType, MonoMac.Foundation.NSDictionary properties);" />
902
1096
      <MemberSignature Language="ILAsm" Value=".method public hidebysig newslot virtual instance class MonoMac.Foundation.NSData RepresentationUsingTypeProperties(valuetype MonoMac.AppKit.NSBitmapImageFileType storageType, class MonoMac.Foundation.NSDictionary properties) cil managed" />
949
1143
        <remarks>To be added.</remarks>
950
1144
      </Docs>
951
1145
    </Member>
 
1146
    <Member MemberName="RGBColorTable">
 
1147
      <MemberSignature Language="C#" Value="public static MonoMac.Foundation.NSString RGBColorTable { get; }" />
 
1148
      <MemberSignature Language="ILAsm" Value=".property class MonoMac.Foundation.NSString RGBColorTable" />
 
1149
      <MemberType>Property</MemberType>
 
1150
      <AssemblyInfo>
 
1151
        <AssemblyVersion>0.0.0.0</AssemblyVersion>
 
1152
      </AssemblyInfo>
 
1153
      <ReturnValue>
 
1154
        <ReturnType>MonoMac.Foundation.NSString</ReturnType>
 
1155
      </ReturnValue>
 
1156
      <Docs>
 
1157
        <summary>To be added.</summary>
 
1158
        <value>To be added.</value>
 
1159
        <remarks>To be added.</remarks>
 
1160
      </Docs>
 
1161
    </Member>
952
1162
    <Member MemberName="SamplesPerPixel">
953
1163
      <MemberSignature Language="C#" Value="public virtual int SamplesPerPixel { get; }" />
954
1164
      <MemberSignature Language="ILAsm" Value=".property instance int32 SamplesPerPixel" />