Exemplo n.º 1
0
 public void SegmentRangeSetColoringType(int startSegment,
                                         int endSegment,
                                         GradientSegmentColor coloringType)
 {
     if (!gimp_gradient_segment_range_set_coloring_type(Name, startSegment,
                                                        endSegment,
                                                        coloringType))
     {
         throw new GimpSharpException();
     }
 }
Exemplo n.º 2
0
 static extern bool gimp_gradient_segment_range_set_coloring_type(string name,
     int start_segment,
     int end_segment,
     GradientSegmentColor coloring_type);
Exemplo n.º 3
0
 static extern bool gimp_gradient_segment_get_coloring_type(string name,
     int segment,
     out GradientSegmentColor coloring_type);
Exemplo n.º 4
0
 public void SegmentRangeSetColoringType(int startSegment, 
     int endSegment,
     GradientSegmentColor coloringType)
 {
     if (!gimp_gradient_segment_range_set_coloring_type(Name, startSegment,
                      endSegment,
                      coloringType))
     {
       throw new GimpSharpException();
     }
 }
Exemplo n.º 5
0
 extern static bool gimp_gradient_segment_range_set_coloring_type
     (string name,
     int start_segment,
     int end_segment,
     GradientSegmentColor coloring_type);
Exemplo n.º 6
0
 extern static bool gimp_gradient_segment_get_coloring_type(string name,
                                                            int segment,
                                                            out GradientSegmentColor coloring_type);