Struct TextureImage
Represents a texture image.
Inherited Members
Namespace: TopSolid.Kernel.Automating
Assembly: cs.temp.dll.dll
Syntax
[AvailableSinceVersion(7, 17, 400, 0)]
public struct TextureImage
Remarks
This structure is available since v7.17.
Constructors
TextureImage(String, String, String, Boolean)
Initializes a new instance of the TextureImage structure.
Declaration
public TextureImage(string inImageFilePath, string inMinorRevisionId, string inSignature, bool inIsGrayscale)
Parameters
| Type | Name | Description |
|---|---|---|
| String | inImageFilePath | File path of the image in PNG format. |
| String | inMinorRevisionId | Texture document minor revision identifier. |
| String | inSignature | Signature. |
| Boolean | inIsGrayscale | Is grayscale image. |
Properties
ImageFilePath
Gets the image.
Declaration
public readonly string ImageFilePath { get; }
Property Value
| Type | Description |
|---|---|
| String |
IsGrayscale
Tells whether the image is in grey colors (grayscale).
Declaration
public readonly bool IsGrayscale { get; }
Property Value
| Type | Description |
|---|---|
| Boolean |
MinorRevisionId
Gets the texture document minor revision identifier.
Declaration
public readonly string MinorRevisionId { get; }
Property Value
| Type | Description |
|---|---|
| String |
Signature
Gets the image signature.
Declaration
public readonly string Signature { get; }
Property Value
| Type | Description |
|---|---|
| String |