Description
The number of bits to encode the digital signal with.
Property type
Read-write property
Syntax
| [Visual Basic .NET] |
|---|
Public Property BitDepth() As Integer
|
| [C#] |
|---|
public int BitDepth {get; set;}
|
| [Managed C++] |
|---|
public: __property int get_BitDepth(); public: __property void set_BitDepth(
int
);
|
| [Unmanaged C++] |
|---|
public: HRESULT get_BitDepth(
int * pVal
);
public: HRESULT put_BitDepth(
int newVal
);
|
| [Java] |
|---|
public Integer getBitDepth();
public void setBitDepth(
Integer
);
|
| [Python - STK API] |
|---|
@property
def BitDepth(self) -> int:
@BitDepth.setter
def BitDepth(self, newVal:int) -> None:
|
See Also