Skip to content

Commit f5cd60d

Browse files
author
yevgen-nykytenko
committed
Update content 2026-04-09 06:22:24
1 parent d65ef4e commit f5cd60d

200 files changed

Lines changed: 656 additions & 195 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

english/net/_index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ weight: 10
55
url: /net/
66
description: GroupDocs.Editor for .NET API References contain examples, code snippets, and API documentation. It provides namespaces, classes, interfaces, and other API details.
77
is_root: true
8-
version: "25.12.0"
8+
version: "26.3.0"
99
---
1010
## Namespaces
1111

english/net/groupdocs.editor.htmlcss.css.datatypes/argbcolor/_index.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@ public struct ArgbColor : ICssDataType, IEquatable<ArgbColor>
2222
| [Alpha](../../groupdocs.editor.htmlcss.css.datatypes/argbcolor/alpha) { get; } | Gets the alpha part of the color in percent (0..1). |
2323
| [B](../../groupdocs.editor.htmlcss.css.datatypes/argbcolor/b) { get; } | Gets the blue part of the color. |
2424
| [G](../../groupdocs.editor.htmlcss.css.datatypes/argbcolor/g) { get; } | Gets the green part of the color. |
25+
| [IsDefault](../../groupdocs.editor.htmlcss.css.datatypes/argbcolor/isdefault) { get; } | Indicates whether this [`ArgbColor`](../argbcolor) instance is default (Transparent) - all 4 channels are set to 0 |
2526
| [IsEmpty](../../groupdocs.editor.htmlcss.css.datatypes/argbcolor/isempty) { get; } | Uninitialized color - all 4 channels are set to 0. Same as Default and Transparent. |
2627
| [IsFullyOpaque](../../groupdocs.editor.htmlcss.css.datatypes/argbcolor/isfullyopaque) { get; } | Indicates whether this [`ArgbColor`](../argbcolor) instance is fully opaque, without transparency (its Alpha channel has max value) |
2728
| [IsFullyTransparent](../../groupdocs.editor.htmlcss.css.datatypes/argbcolor/isfullytransparent) { get; } | Indicates whether this [`ArgbColor`](../argbcolor) instance is fully transparent - its Alpha channel has the min (0) value, so other R, G, and B channels has no visible effect. |

english/net/groupdocs.editor.htmlcss.css.datatypes/argbcolor/equals/_index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ title: Equals
33
second_title: GroupDocs.Editor for .NET API Reference
44
description: Checks two ArgbColorgroupdocs.editor.htmlcss.css.datatypes/argbcolor colors for equality
55
type: docs
6-
weight: 140
6+
weight: 150
77
url: /net/groupdocs.editor.htmlcss.css.datatypes/argbcolor/equals/
88
---
99
## Equals(ArgbColor) {#equals}

english/net/groupdocs.editor.htmlcss.css.datatypes/argbcolor/gethashcode/_index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ title: GetHashCode
33
second_title: GroupDocs.Editor for .NET API Reference
44
description: Returns a hash code that defines the current color.
55
type: docs
6-
weight: 150
6+
weight: 160
77
url: /net/groupdocs.editor.htmlcss.css.datatypes/argbcolor/gethashcode/
88
---
99
## ArgbColor.GetHashCode method
Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
---
2+
title: IsDefault
3+
second_title: GroupDocs.Editor for .NET API Reference
4+
description: Indicates whether this ArgbColorgroupdocs.editor.htmlcss.css.datatypes/argbcolor instance is default Transparent all 4 channels are set to 0
5+
type: docs
6+
weight: 80
7+
url: /net/groupdocs.editor.htmlcss.css.datatypes/argbcolor/isdefault/
8+
---
9+
## ArgbColor.IsDefault property
10+
11+
Indicates whether this [`ArgbColor`](../../argbcolor) instance is default (Transparent) - all 4 channels are set to 0
12+
13+
```csharp
14+
public bool IsDefault { get; }
15+
```
16+
17+
### See Also
18+
19+
* struct [ArgbColor](../../argbcolor)
20+
* namespace [GroupDocs.Editor.HtmlCss.Css.DataTypes](../../../groupdocs.editor.htmlcss.css.datatypes)
21+
* assembly [GroupDocs.Editor](../../../)
22+
23+
<!-- DO NOT EDIT: generated by xmldocmd for GroupDocs.editor.dll -->

english/net/groupdocs.editor.htmlcss.css.datatypes/argbcolor/isempty/_index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ title: IsEmpty
33
second_title: GroupDocs.Editor for .NET API Reference
44
description: Uninitialized color all 4 channels are set to 0. Same as Default and Transparent.
55
type: docs
6-
weight: 80
6+
weight: 90
77
url: /net/groupdocs.editor.htmlcss.css.datatypes/argbcolor/isempty/
88
---
99
## ArgbColor.IsEmpty property

english/net/groupdocs.editor.htmlcss.css.datatypes/argbcolor/isfullyopaque/_index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ title: IsFullyOpaque
33
second_title: GroupDocs.Editor for .NET API Reference
44
description: Indicates whether this ArgbColorgroupdocs.editor.htmlcss.css.datatypes/argbcolor instance is fully opaque without transparency its Alpha channel has max value
55
type: docs
6-
weight: 90
6+
weight: 100
77
url: /net/groupdocs.editor.htmlcss.css.datatypes/argbcolor/isfullyopaque/
88
---
99
## ArgbColor.IsFullyOpaque property

english/net/groupdocs.editor.htmlcss.css.datatypes/argbcolor/isfullytransparent/_index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ title: IsFullyTransparent
33
second_title: GroupDocs.Editor for .NET API Reference
44
description: Indicates whether this ArgbColorgroupdocs.editor.htmlcss.css.datatypes/argbcolor instance is fully transparent its Alpha channel has the min 0 value so other R G and B channels has no visible effect.
55
type: docs
6-
weight: 100
6+
weight: 110
77
url: /net/groupdocs.editor.htmlcss.css.datatypes/argbcolor/isfullytransparent/
88
---
99
## ArgbColor.IsFullyTransparent property

english/net/groupdocs.editor.htmlcss.css.datatypes/argbcolor/istranslucent/_index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ title: IsTranslucent
33
second_title: GroupDocs.Editor for .NET API Reference
44
description: Indicates whether this ArgbColorgroupdocs.editor.htmlcss.css.datatypes/argbcolor instance is translucent not fully transparent but also not fully opaque
55
type: docs
6-
weight: 110
6+
weight: 120
77
url: /net/groupdocs.editor.htmlcss.css.datatypes/argbcolor/istranslucent/
88
---
99
## ArgbColor.IsTranslucent property

english/net/groupdocs.editor.htmlcss.css.datatypes/argbcolor/op_equality/_index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ title: op_Equality
33
second_title: GroupDocs.Editor for .NET API Reference
44
description: Compares two colors and returns a boolean indicating if the two do match.
55
type: docs
6-
weight: 200
6+
weight: 210
77
url: /net/groupdocs.editor.htmlcss.css.datatypes/argbcolor/op_equality/
88
---
99
## ArgbColor Equality operator

0 commit comments

Comments
 (0)