Struct TextureImage
Represents a texture image.
Inherited Members
System.ValueType.Equals(System.Object)
System.ValueType.GetHashCode()
System.ValueType.ToString()
System.Object.Equals(System.Object, System.Object)
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.GetType()
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 |
---|---|---|
System.String | inImageFilePath | File path of the image in PNG format. |
System.String | inMinorRevisionId | Texture document minor revision identifier. |
System.String | inSignature | Signature. |
System.Boolean | inIsGrayscale | Is grayscale image. |
Properties
ImageFilePath
Gets the image.
Declaration
public readonly string ImageFilePath { get; }
Property Value
Type | Description |
---|---|
System.String |
IsGrayscale
Tells whether the image is in grey colors (grayscale).
Declaration
public readonly bool IsGrayscale { get; }
Property Value
Type | Description |
---|---|
System.Boolean |
MinorRevisionId
Gets the texture document minor revision identifier.
Declaration
public readonly string MinorRevisionId { get; }
Property Value
Type | Description |
---|---|
System.String |
Signature
Gets the image signature.
Declaration
public readonly string Signature { get; }
Property Value
Type | Description |
---|---|
System.String |